当前位置: 代码迷 >> Android >> 手机移动时如何知道IP是否改变
  详细解决方案

手机移动时如何知道IP是否改变

热度:68   发布时间:2016-05-01 10:00:51.0
手机移动时怎么知道IP是否改变
有没有系统自带的状态之类的,不然就要自己定期查看?

------解决方案--------------------
在和服务器互动的时候,常常会用到客户端ip地址。当然,在服务器端可以获取请求过来的ip,在手机端,怎么获取自己的ip呢?请参阅下面的函数:

view plain

public static String GetHostIp {

try {

for (Enumeration<NetworkInterface> en = NetworkInterface

.getNetworkInterfaces; en.hasMoreElements;) {

NetworkInterface intf = en.nextElement;

for (Enumeration<InetAddress> ipAddr = intf.getInetAddresses; ipAddr

.hasMoreElements;) {

InetAddress inetAddress = ipAddr.nextElement;

if (!inetAddress.isLoopbackAddress) {

return inetAddress.getHostAddress;

}

}

}

} catch (SocketException ex) {

} catch (Exception e) {

}

return null;

}

其实,上面的方法通过java.net下的相关类获取ip的。主要用到的类有:java.net.NetworkInterface和java.net.InetAddress
  相关解决方案