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



kazumaniax
bmax1368
me
jamesmcm
Can
Kelmi
ysg
dannymo2
chorny
wallie
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.