0
ublic class TheMedicalResourceManagementSystem
{
JFrame jf;
JPanel jp;
JButton b;
JTextField t;
JTextField t2;
public static void main(String[] args)
{
TheMedicalResourceManagementSystem cc = new TheMedicalResourceManagementSystem();
// SwingUtilities.invokeLater(() -> new GUI("The Medical Resource Management System").setVisible(true));
}
public TheMedicalResourceManagementSystem()
{
jf = new JFrame("Frame");
jp = new JPanel();
jp.setLayout(new FlowLayout());
jf.add(jp);
t = new JTextField(15);
jp.add(t);
t2 = new JTextField(15);
jp.add(t);
jp.add(t2);
b= new JButton("Login");
jp.add(b);
jf.setSize(200,200);
jf.setVisible(true);
String username = t.getText();
String password = t2.getText();
b.addActionListener((ActionEvent e) -> {
if(username.equals("admin") && password.equals("password"))
{
SwingUtilities.invokeLater(() -> new GUI("Medical Remote Management System").setVisible(true));
}
else
{
JOptionPane.showMessageDialog(null, "Incorrect username or password , Please try again");
}});
}
}
私のプログラムの中で私はユーザー名とパスワードを入力したいと思っています。私は管理者とパスワードを入力するときにそれが実行されることはできません。JTextFieldとJButtonのログインページ
が働いて、コードに最も関係だときだとして、
ActionEvent
時username
とpassword
を取得する必要があります!このフォームを隠す方法はどうですか?それはif内でのdisposeの使用を伴いますか? – YeBoiあなたのケースでは、私は "モーダルダイアログ"を使っていくつかの研究を行います。あなたが遭遇しようとしている他の問題は解決しますが、 'dispose'はウィンドウを処分する最も一般的な方法でしょうもっと長く必要な – MadProgrammer