是否存在“语法糖”?没有 String.replace 转义 XML 属性值的方法?
从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
老实说,最好的方法是使用 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?
我同意乔恩·斯基特的观点。如果您确实别无选择,请考虑使用 StringEscapeUtils.escapeXml 来自 commons-lang。
I agree with Jon Skeet. If you really have no choice, consider using StringEscapeUtils.escapeXml from commons-lang.