Here you can find the source of length(byte[] array)
private static String length(byte[] array)
//package com.java2s; //License from project: Apache License public class Main { private static String length(byte[] array) { return "(" + array.length + " B)"; }//from www. ja va 2 s .c om }