jsoup 去除html标签,如何使用jsoup取消注释html标签

Kai Sternad..

7

对的,这是可能的.以下是解决此问题的一种方法:

查找所有评论节点

对于每个注释,提取数据属性

在当前注释节点之后插入包含数据的新节点

删除注释节点

看看这段代码:

public class UncommentComments {

public static void main(String... args) {

String htmlIn = "

"

+ ""

+ "

not a comment
"

+ ""

+ "";

Document doc = Jsoup.parse(htmlIn);

List comments = findAllComments(doc);

for (Comment comment : comments) {

String data = comment.getData();

comment.after(data);

comment.remove();

}

System.out.println(doc.toString());

}

public static List findAllComments(Document doc) {

List comments = new ArrayList<>();

for (Element element : doc.getAllElements()) {

for (Node n : element.childNodes()) {

if (n.nodeName().equals("#comment")){

comments.add((Comment)n);

}

}

}

return Collections.unmodifiableList(comments);

}

}

给出这个HTML文档:

not a comment

将导致此输出:

hello there
not a comment
another comment
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值