首页 > Web开发 > 详细

如何使用jsoup解析html的dom标签

时间:2021-09-06 07:40:53      阅读:21      评论:0      收藏:0      [点我收藏+]

1、配置

<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>1.7.3</version>
</dependency>

2、代码
//网站源码
String html = getHtml("www.xxx.com");
System.out.println("官网html:"+html);
Document doc = Jsoup.parse(html);
Elements e_as = doc.getElementsByTag("a");//根据标签名找title元素
for(Element e_a : e_as){
System.out.println(e_a);
System.out.println(e_a.text());//获取标签的文字
}

如何使用jsoup解析html的dom标签

原文:https://www.cnblogs.com/xing-nb/p/15226829.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!