Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to check a "404 page not found" from a WebView and if it's a 404 then I revert to the previous page. Ty for your help

EDIT also the webpages I want to see are pure .jpg 1.jpg 2.jpg 3.jpg but I have no info of how many images exist. So if anyone can propose another method, he is welcome to do so.

share|improve this question
You may want to check out this thread from the android-developers group. – Tim Kryger Jul 5 '10 at 21:06

4 Answers

up vote 3 down vote accepted

Attach a WebViewClient to your WebView, where you override onReceivedError() to find out about the 404 response -- though that will probably be returned as ERROR_FILE_NOT_FOUND.

share|improve this answer
4  
HTTP status errors are not reported over the onReceivedError method. See the documentation – Mannaz Aug 9 '11 at 10:51
The documentation you linked to does not agree with you. The ERROR_ constants are for various HTTP errors (e.g., ERROR_FILE_NOT_FOUND). – CommonsWare Aug 9 '11 at 11:32
Ok, the documentation might still not be unambiguous. I implemented this method and it does not get called when a 404 site is loaded. See this thread for an explanation and a statement on this issue. – Mannaz Aug 9 '11 at 11:44
2  
The Paragraph says "The docs are wrong in this case. We'll update the docs to say that the errors are not HTTP errors but are unrecoverable resource errors (file not found, no network connection, server not found for the main resource, etc.).". So I guess the "Fixed in Froyo" comment is about the documentation. I'm trying this on API Level 8 and it does not recieve HTTP status errors. – Mannaz Aug 9 '11 at 12:12
1  
@Mannaz thanks for the pointer! it saved me from continuing to bang my head against this annoying issue. I've tested this on both 2.2 and 2.3 and in both cases it is not called for 404s as you say. – Maks Feb 21 '12 at 5:19
show 4 more comments

I would try to detect loading of 404 page. You can do that by implementing shouldOverrideUrlLoading method in the WebViewClient class.

mGenericWebClient = new GenericWebClient();
mWebView.setWebViewClient(mGenericWebClient);

public class GenericWebClient extends WebViewClient {
    public boolean shouldOverrideUrlLoading(WebView view, String url)
    {
        if (url=="your404page.html") {
            view.goBack();
            return true;
        }
        return false;
   }
}

You can also check if onReceivedError event appears, when 404 error occurs.

share|improve this answer
what if 404 page NOT controlled by me? Visiting some anonymous site returns 404? – Berat Onur Ersen Apr 29 at 14:29

I did it like this.It doen't need to download the while page to check if it's 404

private int getRange() {
    try {
        HttpURLConnection.setFollowRedirects(false);
        int Count = 1;
        URL testURL;
        while (true) {
            testURL = new URL(
                    (myURL + "/" + Integer.toString(Count++) + ".jpg"));
            HttpURLConnection con = (HttpURLConnection) testURL
                    .openConnection();
            con.setRequestMethod("HEAD");
            if (con.getResponseCode() == 404) {
                return Count - 2;
            }
            Log.e("RESPONCE", Integer.toString(con.getResponseCode()));
        }
    } catch (Exception e) {

    }
    return 1;
}
share|improve this answer
This has nothing to do with a WebView, which was the original question. – Jay Soyer Nov 1 '12 at 16:01

After your page is loaded you can get page's title with the getTitle() method. Then if it contains 404 or if it is different from your page title you can do what you want.

Example:

myView.setWebViewClient(new WebViewClient(){
    @Override  
        public void onPageFinished(WebView view, String url) {  
           String pageTitle = myView.getTitle();
           Toast.makeText(getBaseContext(), pageTitle, Toast.LENGTH_SHORT).show();
        }
});
share|improve this answer
The title returned may or may not 404 in it. Different platforms and/or devices may return a different title name. – Jay Soyer Nov 1 '12 at 16:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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