JSoup 不解析 Android 已知问题页面

发布于 2024-12-08 11:14:52 字数 857 浏览 0 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

乞讨 2024-12-15 11:14:52

尝试使用 .connect 代替。

以下应该为您提供整个页面的文本:

URL url = null;
try {
    url = new URL(
            "http://www.google.com/support/androidmarket/developer/bin/static.py?page=known_issues.cs");
} catch (MalformedURLException e) {
    e.printStackTrace();
}
try {
    Document document = Jsoup.connect(url).timeout(0).get();
    String entireText = document.text();
} catch (IOException e) {
    e.printStackTrace();
}

Try using .connect instead.

The following should give you the entire page's text:

URL url = null;
try {
    url = new URL(
            "http://www.google.com/support/androidmarket/developer/bin/static.py?page=known_issues.cs");
} catch (MalformedURLException e) {
    e.printStackTrace();
}
try {
    Document document = Jsoup.connect(url).timeout(0).get();
    String entireText = document.text();
} catch (IOException e) {
    e.printStackTrace();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文