java - 如何在 Java GUI 中重置计时器并在停止后显示消息

标签 java swing user-interface timer

你好,美好的一天,我想创建一个“重置按钮”,我的计时器将在其中重置。我创建了一个新按钮并将其命名为“重置”,并使用代码“tm2.restart();”但它在我创建的新按钮中不起作用。这是我的代码:

import javax.swing.Timer;
public class deploy extends JFrame {

 private int seconds;
 private SimpleDateFormat df;
 private boolean isRunning;
 private JLabel lblTimer1;
 private JButton btnStart1;

public deploy() {

lblTimer1 = new JLabel("New label");
lblTimer1.setForeground(Color.WHITE);
lblTimer1.setFont(new Font("Tahoma", Font.PLAIN, 20));
lblTimer1.setBounds(100, 231, 94, 16);
contentPane.add(lblTimer1);

 Timer tm2 = new Timer(1000, new ActionListener() {

           @Override
            public void actionPerformed(ActionEvent e) {
                setTimer();
                seconds++;
            }
        });

btnStart1 = new JButton("Start");
btnStart1.setBackground(Color.LIGHT_GRAY);
btnStart1.setForeground(Color.BLUE);
btnStart1.addActionListener(new ActionListener() {
     @Override
           public void actionPerformed(ActionEvent e) {

                if(isRunning) {
                    tm2.stop();
                    btnStart1.setText("Start");
                }else {
                    tm2.start();
                    btnStart1.setText("Stop");
                }

                isRunning = !isRunning;
            }
        });

我的计时器格式为“SimpleDateFormat”(00:00:00),因为我正在创建一个“网吧管理应用程序”,客户将走进该应用程序并记录他/她的时间,直到他/她注销并显示一条消息,说明他/她将得到还清的金额。请帮忙。谢谢

最佳答案

检查代码并毫不犹豫地询问不清楚的地方:

import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.Font;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.TimeZone;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.Timer;
import javax.swing.border.EmptyBorder;
public class Deploy extends JFrame {

    private int seconds;
    private SimpleDateFormat df;
    private JLabel lblTimer;
    private Timer timer;
    private  JButton startButton;

    public Deploy() {

        JPanel contentPane = new JPanel();
        contentPane.setBackground(Color.DARK_GRAY);
        contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
        setContentPane(contentPane);
        contentPane.setLayout(new BorderLayout());

        lblTimer = new JLabel();
        lblTimer.setForeground(Color.WHITE);
        lblTimer.setFont(new Font("Tahoma", Font.PLAIN, 20));
        lblTimer.setPreferredSize(new Dimension(100,30));
        contentPane.add(lblTimer,BorderLayout.NORTH);

        timer = new Timer(1000, new ActionListener() {
            @Override
            public void actionPerformed(ActionEvent e) {
                setTimer();
                seconds++;
            }
        });

        JPanel buttonsPanel = new JPanel();
        contentPane.add(buttonsPanel, BorderLayout.SOUTH);

        startButton = new JButton("Start");
        startButton.setBackground(Color.LIGHT_GRAY);
        startButton.setForeground(Color.BLUE);
        startButton.addActionListener(new ActionListener() {
            @Override
            public void actionPerformed(ActionEvent e) {

                if(timer.isRunning()) {
                    timer.stop();
                    startButton.setText("Start");
                }else {
                    timer.start();
                    startButton.setText("Stop");
                }
            }
        });

        startButton.setPreferredSize(new Dimension(100,30));
        buttonsPanel.add(startButton);

        JButton resetButton = new JButton("Reset");
        resetButton.setBackground(Color.LIGHT_GRAY);
        resetButton.setForeground(Color.RED);
        resetButton.addActionListener(new ActionListener() {

            @Override
            public void actionPerformed(ActionEvent e) {
                resetTimer();
            }
        });
        resetButton.setPreferredSize(new Dimension(100,30));
        buttonsPanel.add(resetButton);

        df = new SimpleDateFormat("HH:mm:ss"); // HH for 0-23
        df.setTimeZone(TimeZone.getTimeZone("GMT"));

        resetTimer();
        pack();
        setVisible(true);
    }

    private void setTimer() {
        Date d = new Date(seconds * 1000L);
        String time = df.format(d);
        lblTimer.setText(time);
    }

    private void resetTimer() {

        if(timer.isRunning()) {
            timer.stop();
        }
        startButton.setText("Start");
        seconds = 0;
        setTimer();
    }

    public static void main(String[] args) {
        new Deploy();
    }
}

关于java - 如何在 Java GUI 中重置计时器并在停止后显示消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42902512/

相关文章:

java - 在没有布局管理器的情况下将 JScrollPane 添加到 JPanel

java - 如何在开发过程中阻止 java 应用程序发送电子邮件?

python - Tkinter 将 <Shift-MouseWheel> 绑定(bind)到水平滚动

ios - 特殊UIlabel设计

visual-studio-2008 - 如何使用 MFC 在 MSVC 2008 中使编辑框在运行时消失(不是灰色)?

java - 有没有办法让两个类使用相同的泛型?

java - selenium - 我可以获取元素的文本,但无法单击其链接

java - 桌面应用程序中的布局

Java JButton - 制作简单的菜单

java - 如何在 Java 中调用输入 validator ?