Java's JPasswordField
is encoding the input which user enter in password field and I don't want it. I am checking password against database values which are purely numeric values.
Am entering the numeric values for password as
12345
and it returns
[C@1e9b48b
I think when you mean encoding, you're probably trying to use the
toString
method. Which on a char array, will just use the standard objecttoString
method.Instead you could probably do
The only other way it's "encoded" is if you're getting an encrypted password somehow.