Package util

Examples of util.Iwlistscan


    }//GEN-LAST:event_jTextArea1MousePressed

    private void rescan_btnActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_rescan_btnActionPerformed
        // TODO add your handling code here:
        Iwlistscan scan = null;
        this.jTextArea1.setText("");
        try {
            scan = new Iwlistscan(this.scan_interface);
        } catch (IOException ex) {
            Logger.getLogger(Frame_Output.class.getName()).log(Level.SEVERE, null, ex);
        } catch (InterruptedException ex) {
            Logger.getLogger(Frame_Output.class.getName()).log(Level.SEVERE, null, ex);
        }
View Full Code Here


       return data;
   }

    private void start_iwlistscan() throws IOException, InterruptedException {
        this.scan_interface=JOptionPane.showInputDialog("Enter the Interface you want to scan (eg:wlan0)");
        Iwlistscan scan;
        if (this.scan_interface!=null && (this.scan_interface.length() > 0)){
            scan=new Iwlistscan(this.scan_interface.toLowerCase());
            setOutput(getOutput()+scan.stdout);
            setOutput(getOutput()+scan.stderr);
        }
        else
             check_destroy=true;
View Full Code Here

TOP

Related Classes of util.Iwlistscan

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.