2015-03-04 11:27

[Java] 取得本地端 IP 與 MAC

  1. import java.net.InetAddress; 
  2. import java.net.NetworkInterface; 
  3.  
  4. public class TestInetAddress { 
  5.  
  6.    public static void main(String[] args) throws Exception { 
  7.        InetAddress ip = InetAddress.getLocalHost(); 
  8.  
  9.        System.out.println("Current IP address : " + ip.getHostAddress()); 
  10.        // Current IP address : 192.168.0.109 
  11.  
  12.        System.out.println(ip.getCanonicalHostName()); 
  13.        // 192.168.0.109 
  14.  
  15.        System.out.println(ip.getHostName()); 
  16.        // jaxhu-PC 
  17.  
  18.  
  19.  
  20.        NetworkInterface network = NetworkInterface.getByInetAddress(ip); 
  21.  
  22.        byte[] mac = network.getHardwareAddress(); 
  23.  
  24.        StringBuilder sb = new StringBuilder(); 
  25.        for (int i = 0; i < mac.length; i++) { 
  26.            sb.append(String.format("%s%02X", (i > 0 ? "-" : ""), mac[i])); 
  27.        } 
  28.  
  29.        System.out.println("Current MAC address : " + sb.toString()); 
  30.        // Current MAC address : 38-2C-4A-B4-C3-24 
  31.  
  32.        System.out.println(network.getDisplayName()); 
  33.        // Realtek PCIe GBE Family Controller 
  34.  
  35.        System.out.println(network.getName()); 
  36.        // eth3 
  37.    } 
  38. } 

參考自:How to get MAC address in Java : Mkyong

0 回應: