Here you can find the source of toHexString(byte[] data)
public static String toHexString(byte[] data)
//package com.java2s; //License from project: Open Source License public class Main { public static String toHexString(byte[] data) { StringBuilder builder = new StringBuilder(); for (byte b : data) { builder.append(b);//from w w w . j a v a 2 s. c om } return builder.toString(); } }