可能重复:
如何检查java中是否存在互联网连接?
我想看看是否有人有一种简单的方法来检测使用 Java 时是否有互联网连接。当前的应用程序在windows的WinInit DLL中使用了“InternetGetConnectedState”方法,但是我的应用程序需要跨平台才能进行mac操作,这种方式行不通。我根本不知道 JNI 在 Java 中使用 DLL,它很快就变得令人沮丧。
我能想到的唯一方法是尝试打开与网站的 URL 连接,如果失败,则返回 false。我的另一种方式如下,但我不知道这是否普遍稳定。如果我拔掉网线,在尝试创建 InetAddress 时确实会收到 UnknownHostException。否则,如果连接了电缆,我会得到一个有效的 InetAddress 对象。我还没有在mac上测试下面的代码。
感谢您提供的任何示例或建议。
更新:最终代码块位于底部。我决定接受 HTTP 请求的建议(在本例中是 Google)。它很简单,向站点发送请求以返回数据。如果我无法从连接中获取任何内容,则表示没有互联网。
public static boolean isInternetReachable()
{
try {
InetAddress address = InetAddress.getByName("java.sun.com");
if(address == null)
{
return false;
}
} catch (UnknownHostException e) {
// TODO Auto-generated catch block
e.printStackTrace();
return false;
}
catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
return false;
}
return true;
}
最终代码块:
//checks for connection to the internet through dummy request
public static boolean isInternetReachable()
{
try {
//make a URL to a known source
URL url = new URL("http://www.google.com");
//open a connection to that source
HttpURLConnection urlConnect = (HttpURLConnection)url.openConnection();
//trying to retrieve data from the source. If there
//is no connection, this line will fail
Object objData = urlConnect.getContent();
} catch (UnknownHostException e) {
// TODO Auto-generated catch block
e.printStackTrace();
return false;
}
catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
return false;
}
return true;
}