I am using JSoup to download and parse the Android Issues Page. This is my code so far:

    URL url = null;
    try {
        url = new URL(
                "http://www.google.com/support/androidmarket/developer/bin/static.py?page=known_issues.cs");
    } catch (MalformedURLException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    try {
        Document document = Jsoup.parse(url, 5000);
        EditText bla;
        bla = (EditText) this.findViewById(R.id.editText1);
        bla.setText(document.toString());
        if (document.toString().contains("recentfixes")) {
            Toast.makeText(this, "YES", 1).show();
        }

Well, the weird thing is, that the WHOLE page is parsed, BUT the section with recent fixes. This is a wget output and this is the parsed output.

Can you help me with that?

link|improve this question

Are there any other HTML parsers you can try? I've found that htmlcleaner.sourceforge.net is quite robust. – Stefan Kendall Oct 5 '11 at 14:50
Thanks, I will try that one :) – Force Oct 5 '11 at 14:54
Nope, it doesn't parse the recent fixes either... this is weird. – Force Oct 5 '11 at 15:02
1  
Have you tried parsing the whole document as a string, rather than relying on the network request? I wonder if the static.py service is filtering content based on requester. Look at how Jsoup or HtmlCleaner is requested the page, and print out the data. If the recent stories information is there, take the string response and run it through both parser. If both still fail, create a minimal failing test-case and log an issue against both cleaners. – Stefan Kendall Oct 5 '11 at 19:36
I can't reproduce your issue. System.out.println(Jsoup.connect("http://www.google.com/support/androidmarket/d‌​eveloper/bin/static.py?page=known_issues.cs").get().toString().contains("recentfi‌​xes")); just gives true. – BalusC Oct 7 '11 at 1:02
show 1 more comment
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.