Here you can find the source of bytesToDec(byte[] bytes)
public static String bytesToDec(byte[] bytes)
//package com.java2s; //License from project: Open Source License public class Main { public static String bytesToDec(byte[] bytes) { StringBuffer buffer = new StringBuffer(); for (byte b : bytes) { buffer.append(b & 0xFF); }/*www.j a v a 2s.com*/ return buffer.toString(); } }