Possible Duplicate:
Java: How to decode HTML character entities in Java like HttpUtility.HtmlDecode?
I have string data with some special characters encoded in this format '
in this case that encoding is a ' sign, a single quote.
so example the "the citizen's home"
should appear like "the citizen's home"
but it does not.
Unfortunately this is not interpreted as such, and I need to parse all of my string for these things and convert them
first: what is that format called, this will help me find a conversion method
second: do you know of a method to fix my strings?