在JSoup中禁用转义

时间:2017-11-23 18:37:43

标签: java jsoup

如何在不转义的情况下将文本放入Element对象?

Document doc = Jsoup.parse(htmlFile, StandardCharsets.UTF_8.name());
Elements els = doc.select("script");
for(Element element: else) {
    element.text("Text that should not be escaped. eq '&'");
}

1 个答案:

答案 0 :(得分:0)

import org.jsoup.nodes.DataNode;


element.empty();
element.appendChild(new DataNode("Text that should not be escaped. eq '&'"));