~ 알려진 이진 시퀀스가있는 바이트 배열이 있습니다. 이진 시퀀스가 올바른지 확인해야합니다. .equals
에 추가로 시도 ==
했지만 둘 다 작동하지 않았습니다.
byte[] array = new BigInteger("1111000011110001", 2).toByteArray();
if (new BigInteger("1111000011110001", 2).toByteArray() == array){
System.out.println("the same");
} else {
System.out.println("different'");
}