[Android]获取当前WIFI的ip地址

配置清单文件加上权限

private String getLocalIpAddress() {
        int paramInt = ((WifiManager) getSystemService("wifi")).getConnectionInfo().getIpAddress();
        return (paramInt & 0xFF) + "." + (0xFF & paramInt >> 8) + "." + (0xFF & paramInt >> 16) + "."
                + (0xFF & paramInt >> 24);
    }

 

posted @ 2015-04-16 08:37  小菜希  阅读(1905)  评论(0编辑  收藏  举报