String str = "9B7D2C34A366BF890C730641E6CECF6F";
I want to convert str into byte array, but str.getBytes() returns 32 bytes instead of 16.
|
|
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.
|
|||||
|
|
Use Example: |
|||
|
|
Use:
|
|||||||
|
|
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:
The class also provides type conversions for many other formats that are generally used in XML. |
|||||
|
|
That should do the trick :
|
|||
|
|
|
try this:
|
|||
|
|