//獲得網(wǎng)卡物理地址以及ping指令返回結(jié)果
/*
* 創(chuàng)建日期 2006-2-17
*
* TODO 要更改此生成的文件的模板,請轉(zhuǎn)至
* 窗口 - 首選項 - Java - 代碼樣式 - 代碼模板
*/
package com.alpeace.app;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
/**
* @author liubo
*
* TODO 要更改此生成的類型注釋的模板,請轉(zhuǎn)至
* 窗口 - 首選項 - Java - 代碼樣式 - 代碼模板
*/
public class GetWindowsMac {
public GetWindowsMac(){
}
public static String getMACAddress() {
String address = "";
String os = System.getProperty("os.name");
System.out.println(os);
if (os != null && os.startsWith("Windows")) {
try {
String command = "cmd.exe /c ipconfig /all";
Process p = Runtime.getRuntime().exec(command);
BufferedReader br =
new BufferedReader(
new InputStreamReader(p.getInputStream()));
String line;
while ((line = br.readLine()) != null) {
if (line.indexOf("Physical Address") > 0) {
int index = line.indexOf(":");
index += 2;
address = line.substring(index);
break;
}
}
br.close();
return address.trim();
} catch (IOException e) {}
}
return address;
}
public static String getPing(String ip) {
String ping = "";
String os = System.getProperty("os.name");
System.out.println(os);
if (os != null && os.startsWith("Windows")) {
try {
String command = "cmd.exe /c ping "+ip+" /all";
Process p = Runtime.getRuntime().exec(command);
BufferedReader br =
new BufferedReader(
new InputStreamReader(p.getInputStream()));
String line;
while ((line = br.readLine()) != null) {
ping = ping + line +"/n";
}
br.close();
return ping.trim();
} catch (IOException e) {}
}
return ping;
}
public static void main(String[] args) {
System.out.println(""+GetWindowsMac.getMACAddress());//獲得物理地址
System.out.println(""+GetWindowsMac.getPing("10.0.1.3")); //獲得ping結(jié)果
}
}