vote up 1 vote down star

Hi,

I'm reading some data that has already been converted to html style υ code.

I now need to convert this back to UTF-8 characters for viewing. Unfortunately I can't use a browser to view the string.

I've read around about conversion in java and it seems if you have a string of \uxxxx then the compiler will convert for you; However that wont work of course because I want to read in dynamic strings.

So can this be done?

Many thanks! Dan

flag
What’s “html style u code”? The “\uxxxx” notation has nothing to do with HTML. – Bombe Mar 23 at 11:09
that should have read ambersand hash x x x. not "u code"! – Codek Jun 12 at 9:38
I've also discivered the unescapeHTML call which is also handy for named entity refs like & – Codek Aug 28 at 15:32

3 Answers

vote up 0 vote down check

You need to use:

String StringEscapeUtils.unescapeJava(String str)

from the Apache Commons Library.

It will find \uxxxx sequences in the input string and convert them to a normal Java String.

link|flag
Excellent, thanks. Works a treat. – Codek Mar 23 at 11:40
vote up 0 vote down

native2ascii

Use the "-reverse" option.

link|flag
vote up 0 vote down

converted to html style υ code.

Which of those? \uXXXX is a Java convention and has nothing to do with HTML. HTML entities look like ¯

link|flag
both; The way to do it is to convert &#xxx; to \uxxxx and then to convert that to UTF-8 using apache commons. – Codek Apr 2 at 13:00

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.