从 HtmlCleaner 获取文本中经过清理的 HTML
我想查看从 HTMLCleaner 获得的清理后的 HTML。 我看到TagNode上有一个名为serialize的方法,但不知道如何使用它。 有人有它的示例代码吗?
谢谢 纳恩
I want to see the cleaned HTML that we get from HTMLCleaner.
I see there is a method called serialize on TagNode, however don't know how to use it.
Does anybody have any sample code for it?
Thanks
Nayn
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是示例代码:
Here's the sample code:
使用 org.htmlcleaner.XmlSerializer 的子类,例如:
Use a subclass of
org.htmlcleaner.XmlSerializer
, for example:上面的方法有一个问题,它会修剪html标签中的内容,例如,
它是 getSingleLineOfChildren 函数执行修剪操作。因此,如果我们从网站获取数据并希望保持像 tuckunder 这样的格式。
PS:如果html标签有子标签,则父标签内容不会被修剪,
例如
;这是第1段。 www.xxxxx.com
将在“this is paragraph1”之前保留空格
the method above has a problem,it will trim content in html label, for example,
and it is
getSingleLineOfChildren
function does the trim operation. So if we fetch data from website and want to keep the format like tuckunder.PS:if a html label has children label,the parent label contetn will not be trimed,
for example
<p> this is paragraph1. <a>www.xxxxx.com</a> </p>
will keep whitespace before "this is paragraph1"