file://取得LOCALHOST的IP地址 public InetAddress getMyIP() 
{ try 

myIPaddress=InetAddress.getLocalHost();
}  catch (UnknownHostException e) {} return (myIPaddress);
} file://取得 www.abc.com 的IP地址 public InetAddress getServerIP()
{  try 
{
myServer=InetAddress.getByName( "www.abc.com");
} catch (UnknownHostException e) {}  return (myServer); 


/////////////////////////////////////////////////////////////