Compare two Byte Arrays?

Compare two Byte Arrays?

View Answers

December 23, 2013 at 5:46 PM

Given code works on the static array comparison methods in the Arrays class.

if (Arrays.equals(array, new BigInteger("1111000011110001", 2).toByteArray()))
{
    System.out.println("Yup, they're the same!");
}









Related Tutorials/Questions & Answers:
Advertisements