Here you can find the source of toHexString(byte[] b)
Parameter | Description |
---|---|
b | The byte array |
public static String toHexString(byte[] b)
//package com.java2s; public class Main { static char[] hexChar = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f' }; /**/*from ww w . j a v a 2 s . c o m*/ * Convert a byte array to a hex string. * * @param b The byte array * @return The hex String */ public static String toHexString(byte[] b) { StringBuffer sb = new StringBuffer(b.length * 2); for (int i = 0; i < b.length; i++) { // look up high nibble char sb.append(hexChar[(b[i] & 0xf0) >>> 4]); // look up low nibble char sb.append(hexChar[b[i] & 0x0f]); } return sb.toString(); } }