Java tutorial
//package com.java2s; // Use of this source code is governed by a BSD-style license that can be import java.util.Arrays; public class Main { /** * Checks if two byte arrays are equal. Used to compare icons. * @return True if equal, false otherwise. */ public static boolean byteArrayEqual(byte[] byte1, byte[] byte2) { if (byte1 == null && byte2 != null) { return byte2.length == 0; } if (byte2 == null && byte1 != null) { return byte1.length == 0; } return Arrays.equals(byte1, byte2); } }