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?
|
feedback
|
|
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. | |||||||||||||||
feedback
|
|
Here's a solution that avoids performing the Charset lookup for every conversion:
| |||||||||||
feedback
|
|
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. | |||
|
feedback
|
| |||||
feedback
|
|
A solution that not only converts, but also tells you if the conversion failed, can be found at the Example Depot. It uses | ||||
|
feedback
|
|
terribly late but i just encountered this issue and this is my fix:
| ||||
|
feedback
|