Java Array Compare areEqual(byte[] a, byte[] b)

Here you can find the source of areEqual(byte[] a, byte[] b)

Description

are Equal

License

Open Source License

Declaration

public static boolean areEqual(byte[] a, byte[] b) 

Method Source Code

//package com.java2s;
// the terms and conditions of the Cryptix General Licence. You should have

public class Main {
    public static boolean areEqual(byte[] a, byte[] b) {
        int aLength = a.length;
        if (aLength != b.length)
            return false;

        for (int i = 0; i < aLength; i++)
            if (a[i] != b[i])
                return false;

        return true;
    }//from  www. j  a v a2s.c om
}

Related

  1. areEqual(byte[] a, byte[] b)
  2. areEqual(byte[] a, byte[] b)
  3. areEqual(byte[] a, byte[] b)
  4. areEqual(byte[] array1, byte[] array2)