Convert Password to String
8
mattrmiller
Convert a password returned by JPasswordField::getPassword() into a String.



Kelmi
ysg
dannymo2
chorny
wallie
Hackdemian
impomatic
cyberhitesh
omarabid
richard123
dannyboy
sundaramkumar
mattrmiller
Pio
i_kenneth
ASmith
ctiggerf
bertheymans
SCoon
wiz1705
mattrmiller
String ret = new String( jPasswordField.getPassword() ) ;
String.valueOf(jPasswordField.getPassword())
useful when you just want to feed the string value of the password field into another method.