Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a byte array with a ~known binary sequence in it. I need to confirm that the binary sequence is what it's supposed to be. I have tried '.equals' in addition to '==', but neither worked.

byte[] array = new BigInteger("1111000011110001", 2).toByteArray();
if (new BigInteger("1111000011110001", 2).toByteArray() == array){
    System.out.println("the same");
}else{
    System.out.println("different'");
}
share|improve this question
can you just compare the strings directly? – objects Mar 26 '11 at 2:51
1  
@objects - leading zeros. Besides, the String / BigInteger stuff could just be a way of illustrating the byte-array comparison question. – Stephen C Mar 26 '11 at 3:13

3 Answers

up vote 26 down vote accepted
if (Arrays.equals(array, new BigInteger("1111000011110001", 2).toByteArray()))
{
    System.out.println("Yup, they're the same!");
}
share|improve this answer

Check out the static java.util.Arrays.equals() family of methods. There's one that does exactly what you want.

share|improve this answer

Java doesn't overload operators, so you'll usually need a method for non-basic types. Try the Arrays.equals() method.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.