倒数计时器jn Java

时间:2015-10-08 15:10:53

标签: java swing timer

我必须在网站的所有注册页面上显示倒计时器(可以注册3个网页)。 让我们说时间限制是1小时完成注册,用户花了10分钟完成第一个网页上的字段,当他点击下一个按钮转到第二个网页 计时器应显示49分钟的时间。如何将此功能添加到现有代码中。

这是我倒数计时器的代码。

public class CountdownTimer extends JLabel implements ActionListener {

    private static final long serialVersionUID = 1L;
    private long count;
    private long timerStart;
    private DateFormat dateFormat;

    javax.swing.Timer timer = new javax.swing.Timer(1000, this);

    public CountdownTimer(int minutes, int seconds) {
        // suppose to show as in 30 MIN 30 SEC.
        super(" ", JLabel.CENTER);

        Calendar cal = Calendar.getInstance();
        cal.set(Calendar.MINUTE, minutes);
        cal.set(Calendar.SECOND, seconds);
        count = cal.getTime().getTime();

        dateFormat = new SimpleDateFormat("mm:ss");

        timer.start();
        timerStart = System.currentTimeMillis();
        long elapsedTime = System.currentTimeMillis()-timerStart;

        System.out.println(elapsedTime);

    }

    public void actionPerformed(ActionEvent e) {
        // suppose to countdown till 00 MIN 00 SEC
        setText(dateFormat.format(count));
        count -= 1000;

        if (dateFormat.format(count).equalsIgnoreCase("00:00")) {
            closeWindow();

        }
    }

    public void closeWindow() {

        System.exit(1);

    }

    public static void main(String[] args) {

        JFrame frame = new JFrame();

        frame.setTitle("Countdown Timer");
        frame.getContentPane().setBackground(Color.white);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setSize(300, 150);

        JPanel panel = new JPanel();
        JLabel label = new JLabel("Registration closes in: ");
        panel.add(label);

        JTextField jTextField = new JTextField();
        panel.add(jTextField);

        CountdownTimer c = new CountdownTimer(00, 60);

        frame.getContentPane().add(c);
        frame.setVisible(true);
        frame.getContentPane().add(panel);
        frame.setVisible(true);
    }
}

1 个答案:

答案 0 :(得分:0)

这很简单,我甚至不会用api。

count = 60*minutes + seconds;

然后在动作监听器中。

count--;
if(count==0) exit(0);

如果你想对它更加强大。你应该使用java.time api。

Instant finished = Instant.now().plus(minutes, ChronoUnit.MINUTES).plus(seconds, ChronoUnit.SECONDS);

现在,在您的动作监听器中,您可以检查是否已达到完成时间。

if(Instant.now().isBefore(finished)){
    //do stuff
} else{
    //do your finished stuff.
}