I have a problem with an ifstatement in a StringTokenizer method i think it is due to it being a char array, I have tryed to convert it but it seems not to work any help would be aprecheated thanks harry.

char[] password = loginPass.getPassword();
StringTokenizer st = new StringTokenizer(theText, ",");
if (thisToken.equals(password))
{
      System.out.println("Hi Harry u got the pasword right!!!");

}
link|improve this question

78% accept rate
You need to tell us at least what the type of "thisToken" is. – DJClayworth Nov 18 '10 at 14:46
Im new to this kind of think ive added some code but im not sure where i would finde out what type it is – Ste T Nov 18 '10 at 14:49
Dear @Ste_T, do you know that, as Java is a typed language supporting exceptions, if you don"'t give us the type of thisToken and the exception or error that happens when you execute this code, we will be totally unable to help you ? – Riduidel Nov 18 '10 at 14:49
char[] is the type of "password". StringTokenizer is the type of the variable "st" – Thomas Langston Nov 18 '10 at 14:52
feedback

1 Answer

up vote 3 down vote accepted

Note that a char[] will never equal a String.

You could try

if (thisToken.equals(new String(password)))

If thisToken actually happens to be a char[] too, then you probably want to use Arrays.equals(thisToken, password) to compare the content of the arrays.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.