我有一个带有〜已知二进制序列的字节数组。我需要确认二进制序列是应该的。.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'");
}