如何将元素文本中包含特殊字符的无效 Xml 转换为有效 Xml

发布于 2024-11-05 18:56:43 字数 248 浏览 0 评论 0 原文

您好,我有一个无效的 xml“ 我的文本带有 & 或

我想将其转换为有效的 XML,替换文本中的特殊字符。因此结果将是:

我的文本带有 & 或 <chars

有谁知道Java中的一些库已经解决了这个问题?

谢谢

Hi I have a not valid xml "<samplexml> my text with & or < chars </samplexml>"

I want to convert it to a valid XML, replacing the special chars in text. So result will be:

"<samplexml> my text with & ; or < ; chars </samplexml>"

Do anyone knows some lib in Java that already solves this problem?

thx

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

空‖城人不在 2024-11-12 18:56:43

不要将其视为“无效的 XML”。将其视为“非 XML”。如果给你一些输入文本,你将必须为其编写一个解析器。它不是 XML,因此您不能使用 XML 解析器,您必须编写自己的解析器。在此之前,您需要定义要解析的语言的语法。通过采用 XML 语法并将其用作为您想要接受的非 XML 语言编写语法的基础,这样做不会有任何坏处。

Don't think of it as "not valid XML". Think of it as "not XML". If you're given some input text, you will have to write a parser for it. It's not XML, so you can't use an XML parser, you will have to write your own. Before you can do that, you need to define the syntax of the language that you want to parse. It wouldn't do any harm to do that by taking the grammar of XML, and using that as a basis for writing a grammar for the non-XML language that you want to accept.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文