Kennwort mit JOptionPane abfragen

  • Beitrags-Autor:
  • Beitrags-Kategorie:Java
  • Beitrags-Kommentare:0 Kommentare
JPasswordField jPasswordField = new JPasswordField();
Object[] message = {"Kennwort:\n", jPasswordField};
 
int a = JOptionPane.showConfirmDialog(null, message, 
       "Kennwort eingeben", JOptionPane.OK_CANCEL_OPTION, 
       JOptionPane.QUESTION_MESSAGE);
 
if(a == JOptionPane.OK_OPTION) {
   String pwd = new String(jPasswordField.getPassword());
   System.out.println("Kennwort: " + pwd);
}

Schreibe einen Kommentar

This site uses Akismet to reduce spam. Learn how your comment data is processed.