Here you can find the source of byte2Hext(byte bin)
public static String byte2Hext(byte bin)
//package com.java2s; public class Main { public static String byte2Hext(byte bin) { int i = bin & 0xFF; return Integer.toHexString(i); }//from w w w .java 2 s . com }