从html页面解析数据

时间:2011-08-09 13:58:29

标签: android html parsing

我正在开发一个android项目。我想访问网页的某些部分,但我该怎么办呢?哪个解析器最适合此任务,以及如何使用此解析器。 我使用以下方法访问网页,但现在想要解析此页面

public void call_a_site()
    {   
            try
        {      
            Uri uri = Uri.parse( "http://www.dsebd.org/" );
            startActivity(new Intent(Intent.ACTION_VIEW,uri));

        }

    catch(Exception e)
    {

    }
}

帮助.. 感谢

2 个答案:

答案 0 :(得分:2)

查看JSoup食谱。

http://jsoup.org/cookbook/

这里有很多好的信息,应该能够回答你的大部分问题。

您可能正在寻找类似的内容:http://jsoup.org/cookbook/input/parse-body-fragment

答案 1 :(得分:0)

Jsoup库是Html解析的最佳选择。

第1步:下载jsoup.x.x.x.jar download link
第2步:在IDE中的libs文件夹中导入 第3步:设置为库


样品
        // Connect to the web site
        Document document = Jsoup.connect(url).get();
        // Using Elements to get the Meta data
        Elements description = document
                    .select("meta[name=description]");
        //Locate the content attribute
            desc = description.attr("content");