gpt4 book ai didi

java - Jsoup 正在转义 iframe 的内容

转载 作者:可可西里 更新时间:2023-11-01 13:24:28 25 4
gpt4 key购买 nike

我在要解析的源 html 中有这个

<div>
<iframe><script>alert('hello')</script></iframe>
</div>

当我使用 Jsoup 解析并打印正文 html 时,我得到了这个。

<div>
<iframe>&lt;script&gt;alert('hello')&lt;/script&gt;</iframe>
</div>

我不希望Jsoup 转换iframe 中的内容。我怎样才能做到这一点?。示例代码

Document doc = Jsoup.parse(html);
System.out.println(doc.body().html());

最佳答案

您可以使用 jsoup 解析器的 unescapeEntities(String,boolean) 方法:

 Document doc = Jsoup.parse(html);            
System.out.println(org.jsoup.parser.Parser.unescapeEntities(doc.body().html(), true));

关于java - Jsoup 正在转义 iframe 的内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41127195/

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