Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
String str = "9B7D2C34A366BF890C730641E6CECF6F";

I want to convert str into byte array, but str.getBytes() returns 32 bytes instead of 16.

share|improve this question
18  
Given that your string has 32 characters, it's not really surprising. – JB Nizet Jul 11 '11 at 13:18
2  
That's not a bug at all. – Buhake Sindi Jul 11 '11 at 13:19
2  
Come on. The String class has excellent javadocs. If you read that you'll learn faster than by asking questions like this. – extraneon Jul 11 '11 at 13:23
1  
@Andreas_D: Look at the question of the OP. The STring has 32 characters. Moreover String.getBytes() doesn't return the internal representation of the String as bytes. It returns the String as a byte array, using the default platform encoding (which might be UTF8, ISO8859-1, CP-1252, ..., using 1 byte per ASCII char) – JB Nizet Jul 11 '11 at 13:34
1  
@JB Nizet - the question does not include valid Java code and it is my interpretation that the stringy thing is a 16 byte integer value in hex format. (that's why I recommended valid java code in my first comment) – Andreas_D Jul 11 '11 at 13:44
show 4 more comments

6 Answers

up vote 20 down vote accepted

I think what the questioner is after is converting the string representation of a hexadecimal value to a byte array representing that hexadecimal value.

The apache commons-codec has a class for that, Hex.

String s = "9B7D2C34A366BF890C730641E6CECF6F";    
byte[] bytes = Hex.decodeHex(s.toCharArray());
share|improve this answer
indeed, that wasn't clear at first sight :) +1 – Gregory Pakosz Jul 11 '11 at 14:34
There is also org.bouncycastle.util.encoders.Hex to do that kind of job. – Errandir Oct 26 '11 at 9:30

Use String.getBytes(java.nio.charset.Charset) or String.getBytes(String) to get the proper encoding.

Example: str.getBytes("UTF-16");

share|improve this answer
It gives output like [B@405e898, but I want the same Str String as Byte Array of 16, Sorry don't know too much encoding – Qaiser Mehmood Jul 11 '11 at 13:34

Use:

str.getBytes("UTF-16LE");
share|improve this answer
It gives output like [B@405e898, but I want the same Str String as Byte Array. – Qaiser Mehmood Jul 11 '11 at 13:33
@Qaiser Mehmood Becuase it's an array so you cannot just print it, you have to make a simple loop to print its elements one by one – Eng.Fouad Jul 11 '11 at 13:47
Something like: for(byte b : str.getBytes("UTF-16LE")) System.out.println(b); – Eng.Fouad Jul 11 '11 at 13:49

Java SE 6 or Java EE 5 provides a method to do this now so there is no need for extra libraries.

The method is DataTypeConverter.parseHexBinary

In this case this can be used as follows:

String str = "9B7D2C34A366BF890C730641E6CECF6F";
byte[] bytes = DataTypeConverter.parseHexBinary(str);

The class also provides type conversions for many other formats that are generally used in XML.

share|improve this answer
1  
The simplest solution for this question that I came across so far - thanks! – mh. Dec 12 '12 at 14:45

That should do the trick :

byte[] bytes = toByteArray(Str.toCharArray());

public static byte[] toByteArray(char[] array) {
    return toByteArray(array, Charset.defaultCharset());
}

public static byte[] toByteArray(char[] array, Charset charset) {
    CharBuffer cbuf = CharBuffer.wrap(array);
    ByteBuffer bbuf = charset.encode(cbuf);
    return bbuf.array();
}
share|improve this answer

try this:

     String str = "9B7D2C34A366BF890C730641E6CECF6F";
     String[] temp = str.split(",");
     bytesArray = new byte[temp.length];
     int index = 0;
     for (String item: temp) {
     bytesArray[index] = Byte.parseByte(item);
     index++;
     }
share|improve this answer

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.