Here you can find the source of isByteArrayEmpty(byte[] bytes)
public static boolean isByteArrayEmpty(byte[] bytes)
//package com.java2s; public class Main { public static boolean isByteArrayEmpty(byte[] bytes) { for (int i = 0; i < bytes.length; i++) { if (bytes[i] != 0x00) { return false; }//from w ww.j av a 2s .c om } return true; } }