Here you can find the source of bytesToStr(byte[] bytes)
private static String bytesToStr(byte[] bytes)
//package com.java2s; //License from project: Apache License public class Main { private static String bytesToStr(byte[] bytes) { String result = ""; byte[] var3 = bytes; int var4 = bytes.length; for (int var5 = 0; var5 < var4; ++var5) { byte aByte = var3[var5]; String temp = Integer.toHexString(aByte & 255); if (temp.length() == 1) { temp = "0" + temp; }//www.j av a2s . co m result = result + temp; } return result; } }