Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

6 Answers

up vote 71 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.

share|improve this answer
9  
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
4  
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 '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 '12 at 19:44
show 1 more comment

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);
}
share|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
3  
@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
3  
Note: "Since 1.6" public String(byte[] bytes, Charset charset) – leo Jan 20 '12 at 15:49
1  
Regarding "avoids performing the Charset lookup for every conversion"... please cite some source. Isn't java.nio.charset.Charset built on top of String.getBytes and therefore has more overhead than String.getBytes? – Pacerier Jul 14 '12 at 22:43

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.

share|improve this answer
1  
+1 for mentioning multibyte characters. – sleske Sep 23 '10 at 10:57
String original = "hello world";
byte[] utf8Bytes = original.getBytes("UTF8");
share|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

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:

for (byte b : new byte[] { 43, 45, (byte) 215, (byte) 247 }) {
    char c = (char) b;
    System.out.print(c);
}

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).

share|improve this answer

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 );
}
share|improve this answer
This, of course, is a lossy conversion. – MPi Aug 16 '11 at 15:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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