Here you can find the source of byteToString(int b)
public static String byteToString(int b)
//package com.java2s; // Licensed under the Academic Free License version 3.0 public class Main { /**//from www . j a va2s. c o m * @return byte to decimal string. */ public static String byteToString(int b) { return Integer.toString(b); } }