Here you can find the source of bytesToHexString(byte[] bArray)
public static final String bytesToHexString(byte[] bArray)
//package com.java2s; public class Main { public static final String bytesToHexString(byte[] bArray) { StringBuffer sb = new StringBuffer(bArray.length); String sTemp;/*www.j a va 2 s.co m*/ for (int i = 0; i < bArray.length; i++) { sTemp = Integer.toHexString(0xFF & bArray[i]); if (sTemp.length() < 2) sb.append(0); sb.append(sTemp.toUpperCase()); } return sb.toString(); } }