public static boolean getXOR(byte[]datas,bytecheckData){
int result=0;
for (int i = 0; i <datas.length; i++) {
result= result^ByteToInt(datas[i]);
}
int data= ByteToInt(checkData);
if (result==data){
return true;
}
return false;
}
不要问我ByteToInt怎么写
```
网友评论