public class Test
{
public static void main(String[] args)
{
Process process;
//获取所有无线网络
String cmd = "netsh wlan show networks mode=bssid";
try
{
process = Runtime.getRuntime().exec(cmd);
System.err.println("-----------");
System.err.println("-----------" + process.toString());
}
catch (IOException e)
{
System.err.println(e);
e.printStackTrace();
}
}
}