Java ME:如何转义 XML '
我正在寻找如何在 Java ME 应用程序中转义 XML 实体,类似于 Apache Commons Lang 2.6
中的 StringEscapeUtils.unescapeXml()
。
除了在我的项目中剪切并粘贴 StringEscapeUtils.unescapeXml()
源并使用 1.3 编译器重新编译之外,还有其他解决方案吗?
谢谢
I'm looking for how unescaping XML entities in a Java ME application, similar to StringEscapeUtils.unescapeXml()
from Apache Commons Lang 2.6
.
Other than cut-and-paste StringEscapeUtils.unescapeXml()
sources in my project and recompiling with 1.3 compiler, is there a solution out there?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的,在获得这个问题的风滚草徽章后,我自己回答。
我找到的唯一解决方案是剪切并粘贴
StringEscapeUtils.unescapeXml()
源代码并为 Java 1.3 编译器重新编译。OK, after earned the Tumbleweed badge for this question, I answer it on my own.
The only solution I found was cut-and-paste
StringEscapeUtils.unescapeXml()
sources and recompiling for Java 1.3 compiler.