获取mac地址

1、通过ifconfig去获取mac地址(需要busybox,有些情况下获取不到



 public static String getMacAddress() {
        String result = "";
        String Mac = "";
        result = callCmd("busybox ifconfig eth0", "HWaddr");
        //如果返回的result == null,则说明网络不可取
        if (result == null) {
            return "eth0 is null";
        }

        //对该行数据进行解析
        //例如:eth0      Link encap:Ethernet  HWaddr 00:16:E8:3E:DF:67
        if (result.length() > 0 && result.contains("HWaddr") == true) {
            Mac = result.substring(result.indexOf("HWaddr") + 6, result.length() - 1);
            if (Mac.length() > 1) {
                LogDebugUtil.e(TAG, Mac.trim() + "=====");
                LogDebugUtil.e(TAG,readSysfs("/sys/class/net/eth0/address")+ "+++");
                return Mac.trim();
            }

        }


        return result;
    }


  /*
       * 通过ifconfig去获取mac地址。。。
       *
       */

    public static String callCmd(String cmd, String filter) {
        String result = "";
        String line = "";
        try {
            Process proc = Runtime.getRuntime().exec(cmd);
            InputStreamReader is = new InputStreamReader(proc.getInputStream());
            BufferedReader br = new BufferedReader(is);

            //执行命令cmd,只取结果中含有filter的这一行
            while ((line = br.readLine()) != null && line.contains(filter) == false) {
                //result += line;
            }

            result = line;
        } catch (Exception e) {
            e.printStackTrace();
        }
        return result;

2、通过/sys/class/net/eth0/address 获取


 public static String getMacAddress() {
        String Mac = readSysfs("/sys/class/net/eth0/address");
        if (Mac == null) {
            return "eth0 is null";
        }
        return Mac;
    }

    private static String readSysfs(String path) {
        if (!new File(path).exists()) {
            return null;
        }
        String str;
        StringBuilder value = new StringBuilder();

        try {
            FileReader fr = new FileReader(path);
            BufferedReader br = new BufferedReader(fr);
            try {
                while ((str = br.readLine()) != null) {
                    value.append(str);
                }
                fr.close();
                br.close();
                return value != null ? value.toString() : null;
            } catch (IOException e) {
                e.printStackTrace();
                return null;
            }
        } catch (FileNotFoundException e) {
            e.printStackTrace();
            return null;
        }
    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值