如何使用IP检查我的移动位置

时间:2014-06-23 07:17:07

标签: php android

以下代码返回100.78.162.xxx ip,我想知道如何在php或android中识别该ip的位置国家/地区。任何帮助???

public static String getIPAddress(boolean useIPv4) {
        try {
            List<NetworkInterface> interfaces = Collections.list(NetworkInterface.getNetworkInterfaces());
            for (NetworkInterface intf : interfaces) {
                List<InetAddress> addrs = Collections.list(intf.getInetAddresses());
                for (InetAddress addr : addrs) {
                    if (!addr.isLoopbackAddress()) {
                        String sAddr = addr.getHostAddress().toUpperCase();
                        boolean isIPv4 = InetAddressUtils.isIPv4Address(sAddr); 
                        if (useIPv4) {
                            if (isIPv4) 
                                return sAddr;
                        } else {
                            if (!isIPv4) {
                                int delim = sAddr.indexOf('%'); // drop ip6 port suffix
                                return delim<0 ? sAddr : sAddr.substring(0, delim);
                            }
                        }
                    }
                }
            }
        } catch (Exception ex) { } // for now eat exceptions
        return "";
    }
String ip = Utils.getIPAddress(true);

1 个答案:

答案 0 :(得分:0)

您可以使用ip2location之类的服务来获取基于ipAddress的位置。它最好合并到服务器端,并使用Web服务公开此服务。或者,您可以使用location_api等服务直接从其他服务中消费。

注意:您也可以使用GPS信号(如果您可以使用此信号)准确地获取位置。