show/hide this revision's text 3 edited title

Converting UTF-8 to ISO-8859-1 in Java - Extended Ascii - how to keep it as single byte

show/hide this revision's text 2 deleted 2 characters in body

Hi, I am trying to convert a string encoded in java in UTF-8 to ISO-8859-1. Say for example, in the character â string 'âabcd' 'â' is represented in ISO-8859-1 as E2. In UTF-8 it is represented as two bytes. C3 A2 I believe. I am facing this problem only in the extended ascii chars..

How do I do this. If 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?

show/hide this revision's text 1

Converting UTF-8 to ISO-8859-1 in Java - Extended Ascii - how to keep it as single byte

Hi, I am trying to convert a string encoded in java in UTF-8 to ISO-8859-1. Say for example, the character â is represented in ISO-8859-1 as E2. In UTF-8 it is represented as two bytes. C3 A2 I believe. I am facing this problem only in the extended ascii chars..

How do I do this. If I do a getbytes(encoding) and then create a new string with the bytes, I get a two different chars. â. Is there any other way to do this?