Home  >  Article  >  Java  >  How to get mac address in java

How to get mac address in java

WBOY
WBOYforward
2023-04-27 19:49:041542browse

代码:

public static String getMACAddress() {
String address = "";
String os = System.getProperty("os.name");
System.out.println(os);
if (os != null && os.startsWith("Windows")) {
try {
ProcessBuilder pb = new ProcessBuilder("ipconfig", "/all");
Process p = pb.start();
BufferedReader br = new BufferedReader(new InputStreamReader(p.getInputStream()));
String line;
while ((line = br.readLine()) != null) {
if (line.indexOf("Physical Address") != -1) {
int index = line.indexOf(":");
address = line.substring(index 1);
break;
}
}
br.close();
return address.trim();
} catch (IOException e) {
}
}
return address;
}

The above is the detailed content of How to get mac address in java. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:yisu.com. If there is any infringement, please contact admin@php.cn delete