重慶分公司,新征程啟航
為企業(yè)提供網(wǎng)站建設(shè)、域名注冊(cè)、服務(wù)器等服務(wù)
為企業(yè)提供網(wǎng)站建設(shè)、域名注冊(cè)、服務(wù)器等服務(wù)
import java.net.InetAddress;
import java.net.NetworkInterface;
import java.net.SocketException;
import java.util.ArrayList;
import java.util.Enumeration;
import java.util.List;
public class PrintServerMacInfo {
private static ListgetMacAddress4Linux() throws Exception {
ListmacAddressList = new ArrayList<>();
ListinetAddresses = getLocalAllInetAddress();
if (inetAddresses != null && inetAddresses.size() >0) {
for( InetAddress inetAddress:inetAddresses ) {
String macAddress = getMacByInetAddress(inetAddress);
macAddressList.add( macAddress );
}
}
return macAddressList;
}
private static ListgetMacAddress4Windows() throws Exception {
ListmacAddressList = new ArrayList<>();
ListinetAddresses = getLocalAllInetAddress();
if (inetAddresses != null && inetAddresses.size() >0) {
for( InetAddress inetAddress:inetAddresses ){
String macAddress = getMacByInetAddress(inetAddress);
macAddressList.add( macAddress );
}
}
return macAddressList;
}
private static ListgetLocalAllInetAddress() throws Exception {
Listresult = new ArrayList<>(4);
for (Enumeration networkInterfaces = NetworkInterface.getNetworkInterfaces(); networkInterfaces.hasMoreElements(); ) {
NetworkInterface iface = (NetworkInterface) networkInterfaces.nextElement();
for (Enumeration inetAddresses = iface.getInetAddresses(); inetAddresses.hasMoreElements(); ) {
InetAddress inetAddr = (InetAddress) inetAddresses.nextElement();
if (!inetAddr.isLoopbackAddress()
&& !inetAddr.isLinkLocalAddress() && !inetAddr.isMulticastAddress()) {
result.add(inetAddr);
}
}
}
return result;
}
private static String getMacByInetAddress(InetAddress inetAddr) {
try {
byte[] mac = NetworkInterface.getByInetAddress(inetAddr).getHardwareAddress();
StringBuffer stringBuffer = new StringBuffer();
for (int i = 0; i< mac.length; i++) {
if (i != 0) {
stringBuffer.append("-");
}
String temp = Integer.toHexString(mac[i] & 0xff);
if (temp.length() == 1) {
stringBuffer.append("0" + temp);
} else {
stringBuffer.append(temp);
}
}
return stringBuffer.toString().toUpperCase();
} catch (SocketException e) {
e.printStackTrace();
}
return null;
}
private static void printServerInfo() throws Exception {
System.out.println( "server info:" );
System.out.println( "macAddress list:" );
String osName = System.getProperty("os.name").toLowerCase();
ListmacAddressList = null;
if (osName.startsWith("windows")) {
macAddressList = getMacAddress4Windows();
} else if (osName.startsWith("linux")) {
macAddressList = getMacAddress4Linux();
}else{
macAddressList = getMacAddress4Linux();
}
if( macAddressList == null || macAddressList.size() == 0 ){
return;
}
for( String macAddress:macAddressList ){
System.out.println( " " + macAddress );
}
}
public static void main(String[] args) throws Exception {
printServerInfo();
}
}
javac PrintServerMacInfo.java
java PrintServerMacInfo
你是否還在尋找穩(wěn)定的海外服務(wù)器提供商?創(chuàng)新互聯(lián)www.cdcxhl.cn海外機(jī)房具備T級(jí)流量清洗系統(tǒng)配攻擊溯源,準(zhǔn)確流量調(diào)度確保服務(wù)器高可用性,企業(yè)級(jí)服務(wù)器適合批量采購(gòu),新人活動(dòng)首月15元起,快前往官網(wǎng)查看詳情吧