In Java, how do I convert a byte array to a string of hex digits while keeping leading zeros? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T00:36:20Zhttp://stackoverflow.com/feeds/question/332079http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/332079/in-java-how-do-i-convert-a-byte-array-to-a-string-of-hex-digits-while-keeping-le5In Java, how do I convert a byte array to a string of hex digits while keeping leading zeros?Eugene M2008-12-01T20:24:43Z2009-06-29T20:08:59Z
<p>I'm working with some example java code for making md5 hashes. One part converts the results from bytes to a string of hex digits:</p>
<pre><code>byte messageDigest[] = algorithm.digest();
StringBuffer hexString = new StringBuffer();
for (int i=0;i<messageDigest.length;i++) {
hexString.append(Integer.toHexString(0xFF & messageDigest[i]));
}
</code></pre>
<p>However, it doesn't quite work since toHexString apparently drops off leading zeros. So, what's the simplest way to go from byte array to hex string that maintains the leading zeros?</p>
http://stackoverflow.com/questions/332079/in-java-how-do-i-convert-a-byte-array-to-a-string-of-hex-digits-while-keeping-le/332093#3320931Answer by kgiannakakis for In Java, how do I convert a byte array to a string of hex digits while keeping leading zeros?kgiannakakis2008-12-01T20:30:05Z2008-12-01T20:42:30Z<p>This what I am using for MD5 hashes:</p>
<pre><code>public static String getMD5(String filename)
throws NoSuchAlgorithmException, IOException {
MessageDigest messageDigest =
java.security.MessageDigest.getInstance("MD5");
InputStream in = new FileInputStream(filename);
byte [] buffer = new byte[8192];
int len = in.read(buffer, 0, buffer.length);
while (len > 0) {
messageDigest.update(buffer, 0, len);
len = in.read(buffer, 0, buffer.length);
}
in.close();
return new BigInteger(1, messageDigest.digest()).toString(16);
}
</code></pre>
<p>EDIT: I've tested and I've noticed that with this also trailing zeros are cut. But this can only happen in the beginning, so you can compare with the expected length and pad accordingly.</p>
http://stackoverflow.com/questions/332079/in-java-how-do-i-convert-a-byte-array-to-a-string-of-hex-digits-while-keeping-le/332101#3321015Answer by mmyers for In Java, how do I convert a byte array to a string of hex digits while keeping leading zeros?mmyers2008-12-01T20:32:19Z2008-12-01T20:32:19Z<p>Well, a simple approach would be to check how many digits are output by Integer.toHexString(). Something like this:</p>
<pre><code>String hex = Integer.toHexString(0xFF & messageDigest[i]);
if (hex.length() == 1) {
// could use a for loop, but we're only dealing with a single byte
hexString.append('0');
}
hexString.append(hex);
</code></pre>
http://stackoverflow.com/questions/332079/in-java-how-do-i-convert-a-byte-array-to-a-string-of-hex-digits-while-keeping-le/332105#3321054Answer by Ed Marty for In Java, how do I convert a byte array to a string of hex digits while keeping leading zeros?Ed Marty2008-12-01T20:33:15Z2008-12-01T20:33:15Z<pre><code>String result = String.format("%0" + messageDigest.length + "s", hexString.toString())
</code></pre>
<p>That's the shortest solution given what you already have. If you could convert the byte array to a numeric value, <code>String.format</code> can convert it to a hex string at the same time.</p>
http://stackoverflow.com/questions/332079/in-java-how-do-i-convert-a-byte-array-to-a-string-of-hex-digits-while-keeping-le/332127#3321270Answer by Fernando Miguélez for In Java, how do I convert a byte array to a string of hex digits while keeping leading zeros?Fernando Miguélez2008-12-01T20:41:14Z2008-12-01T20:41:14Z<pre><code>byte messageDigest[] = algorithm.digest();
StringBuffer hexString = new StringBuffer();
for (int i = 0; i < messageDigest.length; i++) {
String hexByte = Integer.toHexString(0xFF & messageDigest[i]);
int numDigits = 2 - hexByte.length();
while (numDigits-- > 0) {
hexString.append('0');
}
hexString.append(hexByte);
}
</code></pre>
http://stackoverflow.com/questions/332079/in-java-how-do-i-convert-a-byte-array-to-a-string-of-hex-digits-while-keeping-le/332433#3324333Answer by Brandon DuRette for In Java, how do I convert a byte array to a string of hex digits while keeping leading zeros?Brandon DuRette2008-12-01T22:12:58Z2008-12-01T22:12:58Z<p>Check out Apache Commons Codec <a href="http://tinyurl.com/6lb2cj" rel="nofollow">Hex.encodeHex</a>. Return type is <code>char[]</code> which can trivially be converted to <code>String</code>. So:</p>
<pre><code> String hexString = new String(Hex.encodeHex(messageDigest));
</code></pre>
http://stackoverflow.com/questions/332079/in-java-how-do-i-convert-a-byte-array-to-a-string-of-hex-digits-while-keeping-le/334295#3342951Answer by agentbillo for In Java, how do I convert a byte array to a string of hex digits while keeping leading zeros?agentbillo2008-12-02T15:21:12Z2008-12-02T15:21:12Z<p>This solution is a little older school, and should be memory efficient.</p>
<pre><code>public static String toHexString(byte bytes[]) {
if (bytes == null) {
return null;
}
StringBuffer sb = new StringBuffer();
for (int iter = 0; iter < bytes.length; iter++) {
byte high = (byte) ( (bytes[iter] & 0xf0) >> 4);
byte low = (byte) (bytes[iter] & 0x0f);
sb.append(nibble2char(high));
sb.append(nibble2char(low));
}
return sb.toString();
}
private static char nibble2char(byte b) {
byte nibble = (byte) (b & 0x0f);
if (nibble < 10) {
return (char) ('0' + nibble);
}
return (char) ('a' + nibble - 10);
}
</code></pre>
http://stackoverflow.com/questions/332079/in-java-how-do-i-convert-a-byte-array-to-a-string-of-hex-digits-while-keeping-le/943963#9439632Answer by Ayman for In Java, how do I convert a byte array to a string of hex digits while keeping leading zeros?Ayman2009-06-03T10:09:07Z2009-06-03T10:09:07Z<p>You can use the one below. I tested this with leading zero bytes and with initial negative bytes as well</p>
<pre><code>public static String toHex(byte[] bytes) {
BigInteger bi = new BigInteger(1, bytes);
return String.format("%0" + (bytes.length << 1) + "X", bi);
}
</code></pre>
<p>If you want lowercase hex digits, use <code>"x"</code> in the format String.</p>
http://stackoverflow.com/questions/332079/in-java-how-do-i-convert-a-byte-array-to-a-string-of-hex-digits-while-keeping-le/947243#9472430Answer by Peter Lawrey for In Java, how do I convert a byte array to a string of hex digits while keeping leading zeros?Peter Lawrey2009-06-03T21:04:01Z2009-06-03T21:04:01Z<p>Another option</p>
<pre><code>public static String toHexString(byte[]bytes) {
StringBuilder sb = new StringBuilder(bytes.length*2);
for(byte b: bytes)
sb.append(Integer.toHexString(b+0x800).substring(1));
return sb.toString();
}
</code></pre>
http://stackoverflow.com/questions/332079/in-java-how-do-i-convert-a-byte-array-to-a-string-of-hex-digits-while-keeping-le/997269#9972690Answer by Steve for In Java, how do I convert a byte array to a string of hex digits while keeping leading zeros?Steve2009-06-15T17:15:58Z2009-06-15T17:15:58Z<p>I found Integer.toHexString to be a little slow. If you are converting many bytes, you may want to consider building an array of Strings containing "00".."FF" and use the integer as the index. I.e.</p>
<p>hexString.append(hexArray[0xFF & messageDigest[i]]);</p>
<p>This is faster and ensures the correct length. Just requires the array of strings:</p>
<p>String[] hexArray = {
"00","01","02","03","04","05","06","07","08","09","0A","0B","0C","0D","0E","0F",
"10","11","12","13","14","15","16","17","18","19","1A","1B","1C","1D","1E","1F",
"20","21","22","23","24","25","26","27","28","29","2A","2B","2C","2D","2E","2F",
"30","31","32","33","34","35","36","37","38","39","3A","3B","3C","3D","3E","3F",
"40","41","42","43","44","45","46","47","48","49","4A","4B","4C","4D","4E","4F",
"50","51","52","53","54","55","56","57","58","59","5A","5B","5C","5D","5E","5F",
"60","61","62","63","64","65","66","67","68","69","6A","6B","6C","6D","6E","6F",
"70","71","72","73","74","75","76","77","78","79","7A","7B","7C","7D","7E","7F",
"80","81","82","83","84","85","86","87","88","89","8A","8B","8C","8D","8E","8F",
"90","91","92","93","94","95","96","97","98","99","9A","9B","9C","9D","9E","9F",
"A0","A1","A2","A3","A4","A5","A6","A7","A8","A9","AA","AB","AC","AD","AE","AF",
"B0","B1","B2","B3","B4","B5","B6","B7","B8","B9","BA","BB","BC","BD","BE","BF",
"C0","C1","C2","C3","C4","C5","C6","C7","C8","C9","CA","CB","CC","CD","CE","CF",
"D0","D1","D2","D3","D4","D5","D6","D7","D8","D9","DA","DB","DC","DD","DE","DF",
"E0","E1","E2","E3","E4","E5","E6","E7","E8","E9","EA","EB","EC","ED","EE","EF",
"F0","F1","F2","F3","F4","F5","F6","F7","F8","F9","FA","FB","FC","FD","FE","FF"};</p>
http://stackoverflow.com/questions/332079/in-java-how-do-i-convert-a-byte-array-to-a-string-of-hex-digits-while-keeping-le/1047234#10472340Answer by Paul for In Java, how do I convert a byte array to a string of hex digits while keeping leading zeros?Paul2009-06-26T03:56:03Z2009-06-26T04:15:55Z<p>I've been looking for the same thing ... some good ideas here, but I ran a few micro benchmarks. I found the following to be the fastest (modified from Ayman's above and about 2x as fast, and about 50% faster than Steve's just above this one):</p>
<pre><code>public static String hash(String text, String algorithm)
throws NoSuchAlgorithmException {
byte[] hash = MessageDigest.getInstance(algorithm).digest(text.getBytes());
return new BigInteger(1, hash).toString(16);
}
</code></pre>
<p>Edit: Oops - missed that this is essentially the same as kgiannakakis's and so may strip off a leading 0. Still, modifying this to the following, it's still the fastest:</p>
<pre><code>public static String hash(String text, String algorithm)
throws NoSuchAlgorithmException {
byte[] hash = MessageDigest.getInstance(algorithm).digest(text.getBytes());
BigInteger bi = new BigInteger(1, hash);
String result = bi.toString(16);
if (result.length() % 2 != 0) {
return "0" + result;
}
return result;
}
</code></pre>
http://stackoverflow.com/questions/332079/in-java-how-do-i-convert-a-byte-array-to-a-string-of-hex-digits-while-keeping-le/1059731#10597310Answer by Steve for In Java, how do I convert a byte array to a string of hex digits while keeping leading zeros?Steve2009-06-29T18:26:13Z2009-06-29T20:08:59Z<p>It appears concat and append functions can be really slow. The following was MUCH faster for me (than my previous post). Changing to a char array in building the output was the key factor to speed it up. I have not compared to Hex.encodeHex suggested by Brandon DuRette.</p>
<pre><code>public static String toHexString(byte[] bytes) {
char[] hexArray = {'0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'};
char[] hexChars = new char[10000000];
int c = 0;
int v;
for ( j = 0; j < bytes.length; j++ ) {
v = bytes[j] & 0xFF;
hexChars[c] = hexArray[v/16];
c++;
hexChars[c] = hexArray[v%16];
c++;
}
return new String(hexChars, 0, c); }
</code></pre>