码迷,mamicode.com
首页 > Web开发 > 详细

【Jsoup网页解析】

时间:2015-08-06 16:30:48      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:

下载链接:http://jsoup.org/download

一、普通的请求方式(不带有cookie)

使用举例:

  第一步:

Connection conn=Jsoup.connect(url);

  第二步:

Document document=conn.get();

  第三步:

Elements eles=document.getElementsByTag("TagName"):

  第四步:通过Element遍历Elements

  1.根据属性名获取属性值的方法

    

String attr(String attributeKey)
Get an attribute‘s value by its key.

  2.获取Elements第一个Element的方法

  

Element first()
Get the first matched element.

  3.获取Element的html的源代码的方法

String html()
Retrieves the element‘s inner HTML.

 

【Jsoup网页解析】

标签:

原文地址:http://www.cnblogs.com/kuangdaoyizhimei/p/4708235.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!