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
          主站蜘蛛池模板: 元氏县| 时尚| 巍山| 兴山县| 淳安县| 临朐县| 大埔区| 鹤庆县| 高碑店市| 广德县| 长顺县| 闻喜县| 隆尧县| 天门市| 泸水县| 张北县| 嘉峪关市| 台南县| 青河县| 晴隆县| 万源市| 荥经县| 龙岩市| 濉溪县| 延庆县| 衡山县| 徐汇区| 黄大仙区| 崇义县| 游戏| 鄄城县| 谢通门县| 太湖县| 海南省| 邯郸县| 平陆县| 禹城市| 水富县| 保山市| 兴文县| 三台县|