Jsoup没有做任何事情

时间:2012-06-29 07:00:54

标签: java android html jsoup

我已经在我的xml文件中设置了权限,据我所知,我正在新线程中运行连接。这个程序非常基础,我没有得到任何东西。

我想让程序做的就是阅读网站上的所有HTML代码。

我的主要课程在这里:

package com.example.beem;

import java.util.concurrent.Callable;

import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
import android.support.v4.app.NavUtils;

public class Beamer extends Activity {

    Button checkbutton;
    TextView title;
    TextView status;

    @Override
    public void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_beamer);

        checkbutton = (Button) findViewById(R.id.checker);
        title = (TextView) findViewById(R.id.title);
        status = (TextView) findViewById(R.id.status);

        checkbutton.setOnClickListener(new View.OnClickListener() {

            public void onClick(View v) {
                // TODO Auto-generated method stub
                status.setText("*click*");
                status.setText("loading");
                Callable <String> call = new threadWebRead();

                try {
                    String dub = call.call();
                    status.setText(dub);
                } catch(Exception e) {}         
            }
        });
    }
}

我实现可调用的类在这里:

package com.example.beem;

import java.util.concurrent.Callable;

import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;
import org.jsoup.select.Elements;

import android.util.Log;

public class threadWebRead implements Callable{

    public String call() throws Exception {

        // TODO Auto-generated method stub
        Document doc = 'Jsoup.connect("http://www.spring8.or.jp/ext/ja/status/text.html").get();
        String title = doc.title();

        return title;
    }
}

在我弄清楚如何阅读所有HTML之前,我只是想看看Jsoup是否会起作用,但似乎没有任何事情发生。事实上,我已经在这里尝试了很多例子来从网站上阅读HTML,但它们似乎都没有用!有些人说Jsoup让事情变得更容易,但我没有运气。

编辑,事实上,我认为它实际上并不成功地在线程中执行连接线。

非常感谢您的帮助。

来自应用程序的

Logs

1 个答案:

答案 0 :(得分:1)

你的问题与Jsoup无关。

try {
    Document doc = Jsoup.connect("http://www.spring8.or.jp/ext/ja/status/text.html").get();
    System.out.println(doc.title());
} catch (IOException e) {}

这将打印正确的标题:“SPring8 status”