Here you can find the source of areEqual(byte[] a, byte[] b)
Parameter | Description |
---|---|
a | A byte[]. |
b | A byte[]. |
public static boolean areEqual(byte[] a, byte[] b)
//package com.java2s; //License from project: Apache License public class Main { /**/*from w w w .j a va2s. co m*/ * Compares two byte arrays for equality. * * @param a A byte[]. * @param b A byte[]. * @return True if the arrays have identical contents. */ 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; } }