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



KennethCC
me
jamesmcm
Can
Kelmi
ysg
dannymo2
chorny
wallie
Hackdemian
dannyboy
sundaramkumar
mattrmiller
Pio
i_kenneth
ASmith
ctiggerf
sehrgut
bertheymans
SCoon
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.