Answer the question
In order to leave comments, you need to log in
Why are two byte[] arrays not compared?
There is a method:
private static boolean contains (byte[] findObj, List<byte[]> inToObj) {
for (byte[] line:
inToObj) {
if (findObj.equals(line))
return true;
}
return false;
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question