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?

link|improve this question
feedback

6 Answers

up vote 37 down vote accepted

Convert from String to byte[]:

String s = "some text here";
byte[] b = s.getBytes("UTF-8");

Convert from byte[] to String:

byte[] b = {(byte) 99, (byte)97, (byte)116};
String s = new String(b, "US-ASCII");

You should, of course, use the correct encoding name. My examples used "US-ASCII" and "UTF-8", the two most common encodings.

link|improve this answer
2  
US-ASCII is actually not a very common encoding nowadays. Windows-1252 and ISO-8859-1 (which are supersets of ASCII) are far more widespread. – Michael Borgwardt Oct 9 '09 at 13:26
2  
Actually, I find it fairly common in my work. I often read streams of bytes which may have been saved as Windows-1252 or ISO-8859-1 or even just as "output of that legacy program we've had for the past 10 years", but which contain bytes guaranteed to be valid US-ASCII characters. I also often have a requirement to GENERATE such files (for consumption by code which may-or-may-not be able to handle non-ASCII characters. Basically, US-ASCII is the "greatest common denominator" of many pieces of software. – mcherm Oct 13 '09 at 18:01
This method, however, will not report any problems in the conversion. This may be what you want. If not, it is recommended to use CharsetEncoder instead. – MPi Aug 17 '11 at 20:57
Why did you use UTF-8 instead of utf8 (which I always use) ? – Pacerier Jan 12 at 10:54
@Pacerier because the docs for Charset list "UTF-8" as one of the standard charsets. I believe that your spelling is also accepted, but I went with what the docs said. – mcherm Jan 17 at 19:44
feedback

Here's a solution that avoids performing the Charset lookup for every conversion:

import java.nio.charset.Charset;

private final Charset UTF8_CHARSET = Charset.forName("UTF-8");

String decodeUTF8(byte[] bytes) {
    return new String(bytes, UTF8_CHARSET);
}

byte[] encodeUTF8(String string) {
    return string.getBytes(UTF8_CHARSET);
}
link|improve this answer
That's a good point... if performance is critical, then this would save a tiny amount of time. Only significant inside a very tight loop that isn't doing much else, but it could be helpful. – mcherm Aug 6 '10 at 15:39
2  
@mcherm: Even if the performance difference is small, I prefer using objects (Charset, URL, etc) over their string forms when possible. – Bart van Heukelom Dec 7 '10 at 9:08
1  
Note: "Since 1.6" public String(byte[] bytes, Charset charset) – leo Jan 20 at 15:49
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.

link|improve this answer
+1 for mentioning multibyte characters. – sleske Sep 23 '10 at 10:57
feedback
String original = "hello world";
byte[] utf8Bytes = original.getBytes("UTF8");
link|improve this answer
Thanks! I wrote it up again myself adding the other direction of conversion. – mcherm Sep 18 '08 at 0:18
ok great :) glad to have helped. – smink Sep 18 '08 at 0:23
feedback

A solution that not only converts, but also tells you if the conversion failed, can be found at the Example Depot. It uses CharsetEncoder and CharsetDecoder.

link|improve this answer
feedback

terribly late but i just encountered this issue and this is my fix:

private static String removeNonUtf8CompliantCharacters( final String inString ) {
    if (null == inString ) return null;
    byte[] byteArr = inString.getBytes();
    for ( int i=0; i < byteArr.length; i++ ) {
        byte ch= byteArr[i]; 
        // remove any characters outside the valid UTF-8 range as well as all control characters
        // except tabs and new lines
        if ( !( (ch > 31 && ch < 253 ) || ch == '\t' || ch == '\n' || ch == '\r') ) {
            byteArr[i]=' ';
        }
    }
    return new String( byteArr );
}
link|improve this answer
This, of course, is a lossy conversion. – MPi Aug 16 '11 at 15:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.