Sugo

Goof off ? no way: never
posts - 20, comments - 8, trackbacks - 73, articles - 1
  BlogJava :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理
     获取网卡物理地址:
         String cmd="ipconfig /all";
         Process p=Runtime.getRuntime().exec(cmd);
         BufferedReader bis=new BufferedReader(new InputStreamReader(p.getInputStream()));
         String line="";
         while((line=bis.readLine())!=null){
           if(line.indexOf("Physical Address")!=-1){
             Pattern ptn=Pattern.compile("((\\w{2})|(\\d{2})|(\\w+\\d+)|(\\d+\\w+))-.*");
              Matcher m=ptn.matcher(line.trim());
              while(m.find()){
                System.out.println("get mac  "+m.group());
              }
           }
          }

只有注册用户登录后才能发表评论。


网站导航: