使用 SGML 解析 Java 字符串
我有一个带有 SGML 的 Java 字符串,类似这样...
<misspell></misspell><plain>I</plain> <plain>know</plain> <plain>you</plain> <suggestion>ducky</suggestion> <plain>suck</plain> <plain>and</plain> <plain>I</plain> <plain>rocky</plain> <plain>rock</plain>
我如何解析它以获取例如
以便让“鸭子”出去?
javax.swing.text.html.parser.Parse 有什么帮助吗?或者我只能用它解析 HTML 文档?
I have a Java String with SGML, something like this...
<misspell></misspell><plain>I</plain> <plain>know</plain> <plain>you</plain> <suggestion>ducky</suggestion> <plain>suck</plain> <plain>and</plain> <plain>I</plain> <plain>rocky</plain> <plain>rock</plain>
How do I parse it to get for instance say the text inside <suggestion> </suggestion>
so as to get "ducky" out??
Will javax.swing.text.html.parser.Parse can be of any help? or I can only parse HTML docs with it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您显示的字符串不是 HTML,但它可以由 XML 解析器。
SAX API 是 JDK 的一部分,据我所知大多数 XML 解析器都实现它。
The string you show is not HTML, but it could be parsed by an XML parser.
The SAX API is part of the JDK and AFAIK most XML parsers implement it.
尝试使用 html 解析器,它们(必然)对格式错误的标记相当宽容,并且 html 本质上是基于 SGML 的。
例如 http://htmlparser.sourceforge.net/
try an html parser, they are (by necessity) quite forgiving of malformed markup and html is by nature based on SGML.
e.g. http://htmlparser.sourceforge.net/