I have a Service which downloads a list of files one by one. However, when the internet connection goes down or it is disconnected the downloading gets stuck. I did some research on internet connection checking and found some examples utilizing the ConnectivityManager class.

However, the ConnectivityManager class seems to be checking only if the phone is connected to a network using WIFI or MOBILE. It doesn't check whether there actually is internet access. So you could be connected to a network and still be unable to browse using HTTP.

Is there any way other than ConnectivityManager?

I'm using the following alternative:

public boolean isOnline(){

        try{
            URL url = new URL("http://www.google.com");
            HttpURLConnection urlc = (HttpURLConnection)url.openConnection();
            urlc.connect();
            urlc.setConnectTimeout(1000 * 2);
            if(urlc.getResponseCode() == 200){
                return true;
            }else{
            }
        }catch(Exception e){
            return false;
        }

        return true;
}

The problem with this approach is that it's too slow. Since I'm checking inside a while loop (where the downloading of the file is taking place) the download speed is decreased due to the calls to isOnline():

while(..something){
     if(!isOnline())
      killService();
      return; 
}

Any other way of doing this or improving on that one

EDIT: I was thinking of running a thread that checks if the download is stuck within a specified amount of time such as 20 secs or 30secs and if it is stop the service (meaning that the internet is down).

int downloadProgress;
Runnable checkNet = new Runnable(){
    public void run(){
       // code to check download using Timer - need help implementing this
    }
};
link|improve this question

72% accept rate
I don't know but couldn't you do a test and say if the phone is not connected via wifi and also not connected via mobile, then it probably doesn't have internet access? I mean, if the ConnectivityManager tells you that as you state, I've never worked with it. .... Never mind I see what you're saying, you can still be connected but no access ... – ShadowGod Nov 14 '11 at 4:29
which code you have done exactly to check internet connection availability? – Paresh Mayani Nov 14 '11 at 4:49
@PareshMayani the first block of code that I included – bytebiscuit Nov 14 '11 at 13:47
feedback

1 Answer

the below link may be useful for you.

checking inet

link|improve this answer
thnx. Just checked it. Unfortunately, as that guy in the link pointed out, you cannot use this method in a circumstance where you have to log in the network before you can use the internet. I was thinking of doing it like this, please see my edited question! – bytebiscuit Nov 14 '11 at 15:17
feedback

Your Answer

 
or
required, but never shown

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