Password in JTextArea

后端 未结 4 1518
无人及你
无人及你 2021-01-24 18:50

Is there any way using JTextArea to hide the text when user types??

Kind of like password..

in JTextArea i have..

passw

4条回答
  •  走了就别回头了
    2021-01-24 19:37

    Use the JPasswordField class, a subclass of JTextField, provides specialized text fields for password entry.

    Here's the link for reference: http://docs.oracle.com/javase/tutorial/uiswing/components/passwordfield.html

提交回复
热议问题