vote up 3 vote down star

How do you check if you can connect to the internet via java? One way would be:

final URL url = new URL("http://www.google.com");
final URLConnection conn = url.openConnection();
... if we got here, we should have net ...

But is there something more appropriate to perform that task, especially if you need to do consecutive checks very often and a loss of internet connection is highly probable?

flag

Duplicate: stackoverflow.com/questions/1139547 – Grant Wagner Sep 9 at 22:15
yeah, but this "duplicate" accepted an answere which isnt even a solution so pls dont bother – Chris Sep 10 at 0:35

5 Answers

vote up 4 vote down check

You should connect to the place that your actual application needs. Otherwise you're testing whether you have a connection to somewhere irrelevant (Google in this case).

In particular, if you're trying to talk to a web service, and if you're in control of the web service, it would be a good idea to have some sort of cheap "get the status" web method. That way you have a much better idea of whether your "real" call is likely to work.

In other cases, just opening a connection to a port that should be open may be enough - or sending a ping. InetAddress.isReachable may well be an appropriate API for your needs here.

link|flag
The link to isReachable went to the wrong class. It's at java.sun.com/javase/6/… – Chris Mazzola Sep 9 at 23:21
what if you connect to a resource you want to communicate with and it fails. how do you know that it was the problem of the target server and not bcs there was no internet connection? so 'connect to the place that your actual application needs' is not really a solution that would not be a reliable check – Chris Sep 10 at 0:39
@Chris: It depends whether you really care what the problem is. I agree that you can get more diagnostic information if (after a failure) you then connect somewhere else as well. But the most important piece of information is surely "Can I use the resource I'm trying to use?" – Jon Skeet Sep 10 at 5:20
vote up 0 vote down

If you're on java 6 can use NetworkInterface to check for available network interfaces. I.e. something like this:

Enumeration<NetworkInterface> interfaces = NetworkInterface.getNetworkInterfaces();
while (interfaces.hasMoreElements()) {
  NetworkInterface interf = interfaces.nextElement();
  if (interf.isUp() && !interf.isLoopback())
    return true;
}

Haven't tried it myself, yet.

link|flag
vote up 0 vote down

People of suggested using INetAddress.isReachable. The problem is that some sites configure their firewalls to block ICMP Ping messages. So a "ping" might fail even though the web service is accessible.

And of course, the reverse is true as well. A host may respond to a ping even though the webserver is down.

And of course, a machine may be unable to connect directly to certain (or all) web servers due to local firewall restrictions.

The fundamental problem is that "can connect to the internet" is an ill-defined question, and this kind of thing is difficult to test without:

  1. information on the user's machine and "local" networking environment, and
  2. information on what the app needs to access.

So generally, the simplest solution is for an app to just try to access whatever it needs to access, and fall back on human intelligence to do the diagnosis.

link|flag
well, not ill defined. the question is just "is there internet" nothing more. – Chris Sep 10 at 0:43
1  
That is my point. The question "is there internet" is ill-defined. Read the text above for examples that are intended to illustrate this. – Stephen C Sep 10 at 4:07
@Chris: "Internet" is ill-defined. Being able to get to Google doesn't mean you can necessarily get anywhere else, for example. (Imagine if the DNS server is down, but you happen to have a DNS entry in your hosts file.) – Jon Skeet Sep 10 at 5:22
And not being able to get to Google doesn't mean you cannot get to where the user actually wants to go. – Stephen C Sep 10 at 5:33
@Stephen C: ok, now i got the point. maybe i have to try another way to accomplish my need. thxn for comments. – Chris Sep 10 at 9:43
vote up 0 vote down

1) Figure out where your application needs to be connecting to.

2) Set up a worker process to check InetAddress.isReachable to monitor the connection to that address.

link|flag
vote up 0 vote down

This seems to be a duplicate of this question: Detect internet Connection using Java

link|flag
yes it is, didnt found that one. thxn! – Chris Sep 9 at 20:58
Well, I don't get why people vote this answer down... but you're welcome. – Pascal Thivent Sep 9 at 21:46

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.