Giorgio Vespucci
Giorgio Vespucci

Reputation: 1586

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

Upvotes: 1

Views: 631

Answers (1)

Giorgio Vespucci
Giorgio Vespucci

Reputation: 1586

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.

Upvotes: 2

Related Questions