Java ME: how to unescaping XML '
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
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.
精彩评论