JSoup 不解析 Android 已知问题页面
我正在使用 JSoup 下载并解析 Android 问题页面。到目前为止,这是我的代码:
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();
}
嗯,奇怪的是,整个页面都被解析了,但最近修复的部分。 这是一个 wget 输出,this 是解析后的输出。
你能帮我吗?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用 .connect 代替。
以下应该为您提供整个页面的文本:
Try using .connect instead.
The following should give you the entire page's text: