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
          主站蜘蛛池模板: 邹平县| 余庆县| 延川县| 凤庆县| 措美县| 法库县| 集安市| 四会市| 灵寿县| 兴业县| 措美县| 徐闻县| 嵩明县| 延庆县| 拜泉县| 连云港市| 陆川县| 永兴县| 渝中区| 通江县| 双流县| 建瓯市| 邯郸县| 察隅县| 济宁市| 乾安县| 河北省| 揭东县| 修水县| 文水县| 赫章县| 土默特左旗| 治多县| 玉环县| 黄大仙区| 潍坊市| 昌吉市| 梁山县| 文昌市| 保亭| 南和县|