blog.Toby

            BlogJava :: 首頁 :: 新隨筆 :: 聯(lián)系 :: 聚合  :: 管理 ::
            130 隨筆 :: 2 文章 :: 150 評論 :: 0 Trackbacks
          ?

          package com.youkone.tool;

          import java.io.BufferedReader;
          import java.io.InputStreamReader;
          import java.io.IOException;

          /**
          ?* <p>Title: </p>
          ?*
          ?* <p>Description: </p>
          ?*
          ?* <p>Copyright: Copyright (c) 2006</p>
          ?*
          ?* <p>Company: </p>
          ?*
          ?* @author not attributable
          ?* @version 1.0
          ?*/
          public class MACAddress {
          ??? public MACAddress() {
          ??? }

          ??? public static String getMACAddress() {

          ??????? String address = "";
          ??????? String os = System.getProperty("os.name");
          ??????? if (os != null && os.startsWith("Windows")) {
          ??????????? try {
          ??????????????? String command = "cmd.exe /c ipconfig /all";
          ??????????????? Process p = Runtime.getRuntime().exec(command);
          ??????????????? BufferedReader br =
          ??????????????????????? new BufferedReader(
          ??????????????????????????????? new InputStreamReader(p.getInputStream()));
          ??????????????? String line;
          ??????????????? while ((line = br.readLine()) != null) {
          ??????????????????? if (line.indexOf("Physical Address") > 0) {
          ??????????????????????? int index = line.indexOf(":");
          ??????????????????????? index += 2;
          ??????????????????????? address = line.substring(index);
          ??????????????????????? break;
          ??????????????????? }
          ??????????????? }
          ??????????????? br.close();
          ??????????????? return address.trim();
          ??????????? } catch (IOException e) {}
          ??????? }
          ??????? return address;
          ??? }

          ?

          public static void main(String[] args) {
          ??? System.out.println(""+MACAddress.getMACAddress());
          }
          }


          作者Blog: http://blog.csdn.net/woowindice/
          posted on 2006-03-25 11:12 渠上月 閱讀(272) 評論(0)  編輯  收藏 所屬分類: java tips
          主站蜘蛛池模板: 获嘉县| 望城县| 青阳县| 白水县| 五河县| 双鸭山市| 汉中市| 仁布县| 东莞市| 汶上县| 莒南县| 高碑店市| 湘西| 宜黄县| 藁城市| 鹿邑县| 行唐县| 双桥区| 呼玛县| 印江| 洪泽县| 河池市| 深州市| 博白县| 凤山市| 元氏县| 登封市| 汝南县| 巴中市| 内江市| 绥德县| 石棉县| 自贡市| 临清市| 唐河县| 平度市| 林甸县| 娄烦县| 余庆县| 宁德市| 左贡县|