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 渠上月 閱讀(280) 評論(0)  編輯  收藏 所屬分類: java tips
          主站蜘蛛池模板: 桑植县| 成安县| 德化县| 洪湖市| 扶余县| 竹山县| 炎陵县| 台湾省| 柞水县| 巩留县| 临漳县| 台中市| 威信县| 南华县| 湖北省| 灵川县| 穆棱市| 壶关县| 潼关县| 永德县| 兴业县| 吉林省| 泽州县| 东源县| 化德县| 安阳市| 合作市| 万盛区| 平山县| 嘉鱼县| 乌兰县| 高尔夫| 宁远县| 隆化县| 宝应县| 宜丰县| 吴忠市| 奎屯市| 咸阳市| 台江县| 罗田县|