Here you can find the source of ByteToString(byte b)
public static String ByteToString(byte b)
//package com.java2s; public class Main { public static String ByteToString(byte b) { return "" + (char) b; }//from w ww .ja v a 2 s .c o m }