是否存在“语法糖”?没有 String.replace 转义 XML 属性值的方法?

发布于 2024-11-19 07:26:23 字数 212 浏览 1 评论 0原文

从 XML 规范...

允许属性值包含 单引号和双引号, 撇号或单引号字符 (') 可以表示为“'”, 和双引号字符 (") 作为 “"”。

是否有标准或更简单的方法来完成此操作,而不是使用字符串查找/替换? (阿帕奇公共资源?)

From the XML specs...

To allow attribute values to contain
both single and double quotes, the
apostrophe or single-quote character
(') may be represented as "'",
and the double-quote character (") as
""".

Is there a standard or easier way to do it rather than using string find / replace? (apache commons?)

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

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

发布评论

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

评论(2

岁月流歌 2024-11-26 07:26:23

老实说,最好的方法是使用 XML API,而不是尝试通过字符串操作来完成这一切。

有很多小事情很容易出错 - 为什么不使用专门构建的 API?

The best way is to use an XML API instead of trying to do it all through string manipulation, to be honest.

There are so many little things you could easily get wrong - why not use a purpose-built API?

∝单色的世界 2024-11-26 07:26:23

我同意乔恩·斯基特的观点。如果您确实别无选择,请考虑使用 StringEscapeUtils.escapeXml 来自 commons-lang。

I agree with Jon Skeet. If you really have no choice, consider using StringEscapeUtils.escapeXml from commons-lang.

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