默认情况下,
Whitelist类会删除样式,但您可以使用addAttributes(“p”,“style”)轻松修改此行为并添加样式支持.
Whitelist.relaxed().addAttributes("p", "style");
说明
这在清理时将元素p的属性样式设置为忽略.只有p的样式才会被删除!
验证码
只需复制粘贴此代码并从main调用.
public static void main(String[] args) {
String text = "
Center Aligned Text
";String clean = Jsoup.clean(text, Whitelist.relaxed()
.addAttributes("p", "style"));
System.out.println(clean);
}
结果
Center Aligned Text
依赖
org.jsoup:jsoup:1.7.3