检查PC是否使用Java进行Internet连接

时间:2012-10-06 16:54:11

标签: java connection

  

可能重复:
  Detect internet Connection using Java
  How to check if internet connection is present in java?

以下是检查PC是否具有互联网连接的代码:

try{
    URL url = new URL("http://www.google.co.in");
    URLConnection connection = url.openConnection();
    connected = true;
}
catch(IOException ioe){
    connected = false;
    ioe.printStackTrace();
}

我想知道这是否是一种可靠且最好的方法?只要没有互联网连接,就会抛出一个接受,并且布尔变量的值连接等于false

1 个答案:

答案 0 :(得分:0)