是否可以在Swing应用程序中创建暂停?

时间:2015-03-18 06:29:58

标签: java multithreading swing thread-safety

我正在通过从物理卡读取字符串来处理涉及访问的项目,以下代码简化了我的程序的要点,但是当我尝试在用户之后暂停几秒钟时我刷了他的卡,出了问题,行为不是我需要的,程序暂停,但颜色的窗格不会改变,也不会改变标签。

有什么建议吗?

这是代码:

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

public class B2 extends JFrame implements ActionListener {
JLabel lbl;
JButton btn;
JTextField jtf;
String password = "123";

public B2() {
    super("");

    this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
    this.setLayout(null);
    this.setVisible(true);

    setBounds(0,0,480, 250);
    getContentPane().setBackground(Color.cyan);

    btn = new JButton("OK");
    lbl = new JLabel("Enter your password");
    jtf = new JTextField(25);

    btn.addActionListener(this);
    lbl.setBounds(50, 100, 200, 25);
    btn.setBounds(150, 180, 110, 25);
    jtf.setBounds(20, 180, 110, 25);

    getContentPane().add(btn);
    getContentPane().add(lbl);
    getContentPane().add(jtf);
 }

public void actionPerformed(ActionEvent e) {

    if(jtf.getText().equals(password)) {
        getContentPane().setBackground(Color.green);
        lbl.setText("Welcome");
    } else {
        getContentPane().setBackground(Color.red);
        lbl.setText("Access Denied");
    }

    try {
        Thread.sleep(3000);
    } catch (InterruptedException e1) {
        e1.printStackTrace();
    }

    getContentPane().setBackground(Color.cyan);
    lbl.setText("Enter your password");
}

  public static void main(String[] args) {

  javax.swing.SwingUtilities.invokeLater(new Runnable() {
         @Override
         public void run() {
             B2 frame = new B2();
         }
      });
}
}

2 个答案:

答案 0 :(得分:1)

使用Thread.sleep()可以防止Swing重复绘制,直到暂停结束。所以它会改变颜色并同时改变它,你不会看到效果。

尝试使用Timer代替。将其添加到您的代码中它将起作用:

if(jtf.getText().equals(password)) {
    getContentPane().setBackground(Color.green);
    lbl.setText("Welcome");

} else {
    getContentPane().setBackground(Color.red);
    lbl.setText("Access Denied");
}

Timer timer = new Timer(3000, new ActionListener() {
    @Override
    public void actionPerformed(ActionEvent e) {
        getContentPane().setBackground(Color.cyan);
        lbl.setText("Enter your password");
    }
});
timer.setRepeats(false);
timer.start();

答案 1 :(得分:-1)

将最后2行放在评论中

//的getContentPane()的setBackground(Color.cyan);

// lbl.setText(“输入您的密码”);

只有在执行操作时才会看到效果。何时执行actionPerformed()。希望你得到你的解决方案