android 通过网址或者域名得到IP地址

android

通过网址或者域名得到IP地址

 

 public static String GetInetAddress(String  host){
  String IPAddress = "";
  InetAddress ReturnStr1 = null;
  try {
   ReturnStr1 = java.net.InetAddress.getByName(host);
   IPAddress = ReturnStr1.getHostAddress();
  } catch (UnknownHostException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
   return  IPAddress;
  }
  return IPAddress;
 }

posted on 2012-11-22 14:07  DDC's blog  阅读(607)  评论(0编辑  收藏  举报