码迷,mamicode.com
首页 > 移动开发 > 详细

[Android]获取无线路由的ip地址

时间:2015-04-22 11:01:25      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:

try {
            // 获取手机上的所有网络设备(wifi模块)
            Enumeration<NetworkInterface> netInterface = NetworkInterface.getNetworkInterfaces();
            // 枚举所有的网络设备
            while(netInterface.hasMoreElements()){
                NetworkInterface ni = netInterface.nextElement();
                // 获取与当前网络设备绑定的ip地址
                Enumeration<InetAddress> ips = ni.getInetAddresses();
                while(ips.hasMoreElements()){
                    // 将绑定的ip打印出来
                    System.out.println(ips.nextElement().getHostAddress());
                }
            }
        } catch (SocketException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

 

[Android]获取无线路由的ip地址

标签:

原文地址:http://www.cnblogs.com/spadd/p/4446504.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!