Is there any easy way to check if one array contains another array in Java?
Essentially, I want to do something like this:
private static final String NOT_ALLOWED;
public boolean isPasswordOkay(char[] password){
return new String(password).contains(NOT_ALLOWED);
}
...but without converting the password to a String, which Sun indicates could be a security risk. Is there a neater method than manually iterating over every element of the array?
String xxx= "TehPassWord"OR you explicitly callintern(). There are more cases for the constant pool but they are not interesting, I will read the blog fully and probably it's just wrong if states that strings are treated differently by the GC. – bestsss Feb 4 '11 at 13:32