blog.Toby

            BlogJava :: 首頁(yè) :: 新隨筆 :: 聯(lián)系 :: 聚合  :: 管理 ::
            130 隨筆 :: 2 文章 :: 150 評(píng)論 :: 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) 評(píng)論(0)  編輯  收藏 所屬分類: java tips
          主站蜘蛛池模板: 将乐县| 灵台县| 民权县| 木兰县| 封开县| 呼伦贝尔市| 昆明市| 南丰县| 邹平县| 峡江县| 合阳县| 瓮安县| 南溪县| 宣威市| 浮梁县| 穆棱市| 丰顺县| 运城市| 安丘市| 博乐市| 北海市| 恭城| 尼勒克县| 山西省| 巴中市| 霍林郭勒市| 丰原市| 于都县| 斗六市| 和硕县| 利辛县| 襄樊市| 陈巴尔虎旗| 兰溪市| 福州市| 义马市| 获嘉县| 辽阳县| 车致| 江都市| 光泽县|