当前位置: 代码迷 >> J2SE >> 怎么测试用户的计算机是否与因特网相连
  详细解决方案

怎么测试用户的计算机是否与因特网相连

热度:98   发布时间:2016-04-24 16:29:06.0
如何测试用户的计算机是否与因特网相连?
使用java.net.*

------解决方案--------------------

import java.io.IOException;
import java.net.Socket;
import java.net.UnknownHostException;

public class NetTest
{
public static void main(String[] args)
{
Socket s = null;
try
{
s = new Socket( "www.google.com ", 80);
System.out.println( "连网 ");
}
catch (UnknownHostException e)
{
System.out.println( "未连网 ");
}
catch (IOException e)
{
System.out.println( "未连网 ");
}
finally
{
try
{
if(s != null)
s.close();
}
catch (IOException e)
{
}
}
}
}
  相关解决方案