Hi, I am trying to convert a string encoded in java in UTF-8 to ISO-8859-1. Say for example, in the string 'âabcd' 'â' is represented in ISO-8859-1 as E2. In UTF-8 it is represented as two bytes. C3 A2 I believe. When I do a getbytes(encoding) and then create a new string with the bytes in ISO-8859-1 encoding, I get a two different chars. â. Is there any other way to do this so as to keep the character the same i.e. âabcd?
|
1
|
|
|
|
|
|
NEVER MIND, it means Class Selection in english. Word is wonderful :) |
||
|
|
|
|
Can anyone help me out please, A friend needs this Ŭ·¡½º ¼±Åà converted to english. he says that is is written in iso-8559 code but i dont know how to convert it for him..... can anyone here convert it please |
||
|
|
|
Starting with a set of bytes which encode a string using UTF-8, creates a string from that data, then get some bytes encoding the string in a different encoding:
this outputs strings and the iso88591 bytes correctly:
So your byte array wasn't paired with the correct encoding:
Outputs
(either that, or you just wrote the utf8 bytes to a file and read them elsewhere as iso88591) |
||
|
|
|
|
If you get 0xC3 0xA2 ("â") when encoding your Your current results show that UTF-8–encoded data is incorrectly decoded with ISO-8859-1 (or some other 8-bit encoding). If you get some bytes from |
||||
|
|
|
If you're dealing with character encodings other than UTF-16, you shouldn't be using
|
||
|
|
|
Will do the trick. From your description it seems as if you're trying to "store an ISO-8859-1 String". String objects in Java are always implicitely encoded in UTF-16. There's no way to change that encoding. What you can do, 'though is to get the bytes that constitute some other encoding of it (using the .getBytes() method as shown above). |
||
|
|
|
|
Look into the classes in java.nio.charset. |
||
|
|
