| Author |
jPasswordField is not working please help..
|
Soumya Rout
Ranch Hand
Joined: Aug 06, 2009
Posts: 49
|
|
Hi,
In a login applcation i have used the jPasswordField control. To retrieve the user input i've used as usual method getText(). And after getting the value will be compared with the database.
but first i cant retrive text from the passwordfield
please anyone tell me how this problem can be sort out.
regards
som
|
 |
Maneesh Godbole
Saloon Keeper
Joined: Jul 26, 2007
Posts: 8435
|
|
|
Use JPasswordField#getPassword() instead.
|
[Donate a pint, save a life!] [How to ask questions] [Onff-turn it on!]
|
 |
Soumya Rout
Ranch Hand
Joined: Aug 06, 2009
Posts: 49
|
|
Sorry ive given the control name. i have changed the Jpasswordfield name and its working now..
|
 |
Maneesh Godbole
Saloon Keeper
Joined: Jul 26, 2007
Posts: 8435
|
|
Even then, you should not be using getText()
From the JPasswordField API
Deprecated. As of Java 2 platform v1.2, replaced by getPassword.
Returns the text contained in this TextComponent. If the underlying document is null, will give a NullPointerException.
For security reasons, this method is deprecated. Use the * getPassword method instead.
|
 |
 |
|
|
subject: jPasswordField is not working please help..
|
|
|