How do I display the text of a JPasswordField rather than set 0 as an echo char?
Java Docs says:
Setting a value of 0 indicates that you wish
Use the char with value 0, not the number 0, or the char '0':
outField.setEchoChar((char)0);