Here you can find the source of byteToHexString(byte data)
Parameter | Description |
---|---|
data | array |
public static String byteToHexString(byte data)
//package com.java2s; //License from project: Open Source License public class Main { /**//from w w w . j a va 2s .c o m * convert a byte to a hex string * * @param data array * @return String representation in hex */ public static String byteToHexString(byte data) { StringBuffer buf = new StringBuffer(); buf.append(toHexChar((data >>> 4) & 0x0F)); buf.append(toHexChar(data & 0x0F)); return buf.toString(); } /** * convert a integer into a hexadecimal character * * @param i integer * @return hex char */ public static char toHexChar(int i) { if ((0 <= i) && (i <= 9)) { return (char) ('0' + i); } else { return (char) ('a' + (i - 10)); } } }