show/hide this revision's text 3 added 300 characters in body

If you get 0xC3 0xA2 ("â") when encoding your String with ISO-8859-1, the String contains those Unicode characters.

This is a problem at the decoder, not the encoder. Find where the bytes are decoded to characters, and change the character encoding to "UTF-8".

Your current results show that UTF-8encoded –encoded data is incorrectly decoded with ISO-8859-1 (or some other 8-bit encoding).

If you get some bytes from byte[] encoded = original.getBytes(encoding), then later reverse the process with decoded = new String(encoded, encoding(I'd guess ISO-8859-1)), the encoding has to be the same in both places. Reading your question carefully, I suspect that you are passing "UTF-8" to getBytes and "ISO-8859-1" to the decoder. That just won't work.

show/hide this revision's text 2 Be more specific about the problem.

A String is essentially UTF-16 encoding. The phrase, "a string encoded in Java in UTF-8," doesn't make sense.

If you have a get 0xC3 0xA2 ("â") when encoding your String with ISO-8859-1, just call String.getBytes("ISO-8859-1")the String contains those Unicode characters. If that doesn't give you

This is a problem at the correct resultdecoder, not the String doesn't contain encoder. Find where the right bytes are decoded to characters. This would most likely be caused by using , and change the wrong character encoding when the Stringto "UTF-8". Your current results show that UTF-8 encoded data is createdincorrectly decoded with some 8-bit encoding (I'd guess ISO-8859-1).

show/hide this revision's text 1

A String is essentially UTF-16 encoding. The phrase, "a string encoded in Java in UTF-8," doesn't make sense. If you have a String, just call String.getBytes("ISO-8859-1"). If that doesn't give you the correct result, the String doesn't contain the right characters. This would most likely be caused by using the wrong character encoding when the String is created.