`
jiasudu1649
  • 浏览: 723593 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

MacAddressAccess

 
阅读更多
记录下来,省得下次使用时还得查找。
 
  1. import java.io.*;   
  2. public class MacAddressAccess {  
  3.     public MacAddressAccess() {   
  4.     }  
  5.     private static String getMyMac() {  
  6.         String s = "";  
  7.         try {  
  8.             String s1 = "ipconfig /all";  
  9.             // 相当于在命令行下直接使用ipconfig /all  
  10.             Process process = Runtime.getRuntime().exec(s1);   
  11.             BufferedReader bufferedreader = new BufferedReader(new   
  12.                        InputStreamReader(process.getInputStream()));  
  13.             String line = bufferedreader.readLine();  
  14.             // 筛选出mac地址  
  15.             for(;line != null;) {  
  16.                 String nextLine = bufferedreader.readLine();  
  17.                 if(line.indexOf("Physical Address") > 0){   
  18.                     int i = line.indexOf("Physical Address") + 36;   
  19.                     s = line.substring(i);   
  20.                     break;   
  21.                 }  
  22.                 line = nextLine;   
  23.             }  
  24.             bufferedreader.close();  
  25.             process.waitFor();  
  26.         } catch(Exception exception) {  
  27.             s = "";  
  28.         }  
  29.         return s.trim();  
  30.     }  
  31.     public static void main(String[] args){   
  32.         // 显示Mac地址在命令行界面  
  33.         System.out.println(MacAddressAccess.getMyMac());  
  34.     }  
  35. }  
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics