标签:
下载链接: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.
|
标签:
原文地址:http://www.cnblogs.com/kuangdaoyizhimei/p/4708235.html