In Java, I have a String and I want to encode it as a byte array (in UTF8, or some other encoding). Alternately, I have a byte array (in some known encoding) and I want to convert it into a Java String. How do I do these conversions?
|
Convert from String to byte[]:
Convert from byte[] to String:
You should, of course, use the correct encoding name. My examples used "US-ASCII" and "UTF-8", the two most common encodings. |
|||||||||||||||
|
|
Here's a solution that avoids performing the Charset lookup for every conversion:
|
|||||||||||||||
|
|
You can convert directly via the String(byte[], String) constructor and getBytes(String) method. Java exposes available character sets via the Charset class. The JDK documentation lists supported encodings. 90% of the time, such conversions are performed on streams, so you'd use the Reader/Writer classes. You would not incrementally decode using the String methods on arbitrary byte streams - you would leave yourself open to bugs involving multibyte characters. |
|||||
|
|
||||
|
If you are using 7-bit ASCII or ISO-8859-1 (an amazingly common format) then you don't have to create a new java.lang.String at all. It's much much more performant to simply cast the byte into char: Full working example:
If you are not using extended-characters like Ä, Æ, Å, Ç, Ï, Ê and can be sure that the only transmitted values are of the first 128 Unicode characters, then this code will also work for UTF-8 and extended ASCII (like cp-1252). |
||||
|
|
|
terribly late but i just encountered this issue and this is my fix:
|
||||
|
|