Converting UTF-8 to ISO-8859-1 in Java - how to keep it as single byte - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T21:40:30Zhttp://stackoverflow.com/feeds/question/655891http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/655891/converting-utf-8-to-iso-8859-1-in-java-how-to-keep-it-as-single-byte2Converting UTF-8 to ISO-8859-1 in Java - how to keep it as single byteluckylak2009-03-17T20:25:06Z2009-04-06T03:43:58Z
<p>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?</p>
http://stackoverflow.com/questions/655891/converting-utf-8-to-iso-8859-1-in-java-how-to-keep-it-as-single-byte/655938#655938-1Answer by Adam Jaskiewicz for Converting UTF-8 to ISO-8859-1 in Java - how to keep it as single byteAdam Jaskiewicz2009-03-17T20:38:40Z2009-03-17T20:38:40Z<p>Look into the classes in <a href="http://java.sun.com/javase/6/docs/api/java/nio/charset/package-summary.html" rel="nofollow">java.nio.charset</a>.</p>
http://stackoverflow.com/questions/655891/converting-utf-8-to-iso-8859-1-in-java-how-to-keep-it-as-single-byte/655940#6559404Answer by Joachim Sauer for Converting UTF-8 to ISO-8859-1 in Java - how to keep it as single byteJoachim Sauer2009-03-17T20:39:17Z2009-03-17T20:39:17Z<pre><code>byte[] iso88591Data = theString.getBytes("ISO-8859-1");
</code></pre>
<p>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 <em>always</em> implicitely encoded in UTF-16. There's no way to change that encoding.</p>
<p>What you can do, 'though is to get the bytes that constitute some other encoding of it (using the .getBytes() method as shown above).</p>
http://stackoverflow.com/questions/655891/converting-utf-8-to-iso-8859-1-in-java-how-to-keep-it-as-single-byte/655948#6559483Answer by Adam Rosenfield for Converting UTF-8 to ISO-8859-1 in Java - how to keep it as single byteAdam Rosenfield2009-03-17T20:43:21Z2009-03-17T20:43:21Z<p>If you're dealing with character encodings other than UTF-16, you shouldn't be using <code>java.lang.String</code> or the <code>char</code> primitive -- you should only be using <code>byte[]</code> arrays or <code>ByteBuffer</code> objects. Then, you can use <a href="http://java.sun.com/javase/6/docs/api/java/nio/charset/Charset.html" rel="nofollow"><code>java.nio.charset.Charset</code></a> to convert between encodings:</p>
<pre><code>Charset utf8charset = Charset.forName("UTF-8");
Charset iso88591charset = Charset.forName("ISO-8859-1");
ByteBuffer inputBuffer = ByteBuffer.wrap(new Byte[]{(byte)0xC3, (byte)0xA2});
// decode UTF-8
CharBuffer data = utf8charset.decode(inputBuffer);
// encode ISO-8559-1
ByteBuffer outputBuffer = iso88591charset.encode(data);
byte[] outputData = outputBuffer.array();
</code></pre>
http://stackoverflow.com/questions/655891/converting-utf-8-to-iso-8859-1-in-java-how-to-keep-it-as-single-byte/655964#6559641Answer by sylvarking for Converting UTF-8 to ISO-8859-1 in Java - how to keep it as single bytesylvarking2009-03-17T20:48:32Z2009-03-17T22:11:22Z<p>If you get 0xC3 0xA2 ("â") when encoding your <code>String</code> with ISO-8859-1, the <code>String</code> contains those Unicode characters. </p>
<p>Your current results show that UTF-8–encoded data is incorrectly decoded with ISO-8859-1 (or some other 8-bit encoding).</p>
<p>If you get some bytes from <code>byte[] encoded = original.getBytes(encoding)</code>, then later reverse the process with <code>decoded = new String(encoded, encoding)</code>, the <strong><code>encoding</code></strong> <em>has to be the <strong>same</strong> in both places.</em> Reading your question carefully, I suspect that you are passing "UTF-8" to <code>getBytes</code> and "ISO-8859-1" to the decoder. That just won't work.</p>
http://stackoverflow.com/questions/655891/converting-utf-8-to-iso-8859-1-in-java-how-to-keep-it-as-single-byte/656276#6562760Answer by Pete Kirkham for Converting UTF-8 to ISO-8859-1 in Java - how to keep it as single bytePete Kirkham2009-03-17T22:25:03Z2009-03-17T22:25:03Z<p>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:</p>
<pre><code> byte[] utf8bytes = { (byte)0xc3, (byte)0xa2, 0x61, 0x62, 0x63, 0x64 };
Charset utf8charset = Charset.forName("UTF-8");
Charset iso88591charset = Charset.forName("ISO-8859-1");
String string = new String ( utf8bytes, utf8charset );
System.out.println(string);
// "When I do a getbytes(encoding) and "
byte[] iso88591bytes = string.getBytes(iso88591charset);
for ( byte b : iso88591bytes )
System.out.printf("%02x ", b);
System.out.println();
// "then create a new string with the bytes in ISO-8859-1 encoding"
String string2 = new String ( iso88591bytes, iso88591charset );
// "I get a two different chars"
System.out.println(string2);
</code></pre>
<p>this outputs strings and the iso88591 bytes correctly:</p>
<pre><code>âabcd
e2 61 62 63 64
âabcd
</code></pre>
<p>So your byte array wasn't paired with the correct encoding: </p>
<pre><code> String failString = new String ( utf8bytes, iso88591charset );
System.out.println(failString);
</code></pre>
<p>Outputs</p>
<pre><code>âabcd
</code></pre>
<p>(either that, or you just wrote the utf8 bytes to a file and read them elsewhere as iso88591)</p>
http://stackoverflow.com/questions/655891/converting-utf-8-to-iso-8859-1-in-java-how-to-keep-it-as-single-byte/719372#719372-1Answer by Jono for Converting UTF-8 to ISO-8859-1 in Java - how to keep it as single byteJono2009-04-05T17:54:30Z2009-04-05T17:54:30Z<p>Can anyone help me out please,</p>
<p>A friend needs this Ŭ·¡½º ¼±Åà converted to english.</p>
<p>he says that is is written in iso-8559 code but i dont know how to convert it for him.....</p>
<p>can anyone here convert it please</p>
http://stackoverflow.com/questions/655891/converting-utf-8-to-iso-8859-1-in-java-how-to-keep-it-as-single-byte/720197#720197-1Answer by Jono for Converting UTF-8 to ISO-8859-1 in Java - how to keep it as single byteJono2009-04-06T03:43:58Z2009-04-06T03:43:58Z<p>NEVER MIND,</p>
<p>it means Class Selection in english.</p>
<p>Word is wonderful :)</p>