我试图编写一个Java登录信息,显示有关密码的不同线索。在第一次尝试时说:"它是一个单词&#34 ;;在第二次尝试中说'#34;它是一种水果&#34 ;;等...
最有效的方法是什么?
2017-10-18 12:49:35
2017-10-18 12:49:35
我想可以使用显示private void jBLoginActionPerformed(java.awt.event.ActionEvent evt) {
char clave[]=jPass1.getPassword();
String clavedef=new String(clave);
if (jUsser.getText().equals("root") && clavedef.equals("apple")){
this.dispose();
JOptionPane.showMessageDialog(null, "YOU CAN PASS", "AL", JOptionPane.INFORMATION_MESSAGE);
Alarm a = new Alarm();
a.setVisible(true);
this.setVisible(false);
}else {
JOptionPane.showMessageDialog(null, "ERROR", "ERROR", JOptionPane.ERROR_MESSAGE);
/**a function that adds 1 to the counter and shows the corresponding label ??*/
}
的不同标签的计数器来完成;但我不知道如何编写代码。谢谢你的帮助