gpt4 book ai didi

java - 如何使用jsoup取消注释html标签

转载 作者:太空狗 更新时间:2023-10-29 15:45:46 27 4
gpt4 key购买 nike

我想知道是否可以使用 jsoup 取消注释 html 标签以进行实例更改:

<!--<p> foo bar </p>-->

<p> foo bar </p>

最佳答案

是的,这是可能的。这是解决此问题的一种方法:

  1. 查找所有评论节点
  2. 为每个评论提取数据属性
  3. 在当前评论节点之后插入一个带有数据的新节点
  4. 删除评论节点

看看这段代码:

 public class UncommentComments {
public static void main(String... args) {
String htmlIn = "<html><head></head><body>"
+ "<!--<div> hello there </div>-->"
+ "<div>not a comment</div>"
+ "<!-- <h5>another comment</h5> -->"
+ "</body></html>";
Document doc = Jsoup.parse(htmlIn);
List<Comment> comments = findAllComments(doc);
for (Comment comment : comments) {
String data = comment.getData();
comment.after(data);
comment.remove();
}
System.out.println(doc.toString());
}

public static List<Comment> findAllComments(Document doc) {
List<Comment> 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 文档:

<html>
<head></head>
<body>
<!--<div> hello there </div>-->
<div>not a comment</div>
<!-- <h5>another comment</h5> -->
</body>
</html>

将导致此输出:

<html>
<head></head>
<body>
<div>hello there</div>
<div>not a comment</div>
<h5>another comment</h5>
</body>
</html>

关于java - 如何使用jsoup取消注释html标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20747333/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com