如何配置 Nekohtml html 解析器将
进入
>
我正在评估其他 Java HTML 解析器中的 Nekothml 解析器,并尝试让它用
元素替换我的所有
元素。这可以使用 Nekohtml API 来完成吗? 如有任何反馈,我们将不胜感激。 谢谢。
I'm evaluating the Nekothml parser among other Java HTML parsers, and I'm trying to make it replace all my <br>
with <br />
elements. Can this be done using the Nekohtml API?
Any feedback is appreciated.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
nekohtml 解析器是一个解析器。它生成 DOM 树或 SAX 事件,全部在内存中,而不是文本。如果您配置正确,它将读取 html
就好像它是一个空的 XML 元素,任何 XML 序列化都会生成
。
The nekohtml parser is a parser. It produces a DOM tree or SAX events, all in memory, not text. If you have configured it properly, it will read the html <br> as if it were an empty XML element, and any XML serialization will them produce <br/>.