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?
static.pyservice 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:36System.out.println(Jsoup.connect("http://www.google.com/support/androidmarket/developer/bin/static.py?page=known_issues.cs").get().toString().contains("recentfixes"));just givestrue. – BalusC Oct 7 '11 at 1:02