public static void main(String[] args) throws IOException, InterruptedException {
// 执行ping命令
String cmdPing = "ping 127001";
Runtime run = RuntimegetRuntime();
Process process = runexec(cmdPing);
processwaitFor();
BufferedReader br = new BufferedReader(new InputStreamReader(processgetInputStream(), CharsetforName("GBK")));
String line = null;
while ((line = brreadLine()) != null) {
Systemoutprintln(line);
}
}
需要遍历局域网IP的,大体分为两步:1得到局域网网段,可由自己机器的IP来确定
2根据IP类型,一次遍历局域网内IP地址 给一个JAVA类,编译之后直接运行便可以得到局域网内所有IP,具体怎样使用自己编写相应代码调用便可 代码如下:
package bean;
import javaio;
import javautil;
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)