How To Reset a Timer in Java GUI and Display Message after Stop

你离开我真会死。 提交于 2019-12-13 18:00:23

问题


Hello Good day i want to create a "Reset Button" where my Timer will reset. I created a new button and named it as "reset" and i use the code "tm2.restart();" but its not working in my created New Button. This is my code:

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;
            }
        });

My kind of timer is formatted as "SimpleDateFormat" (00:00:00) because i'm creating a "cybercafe management application" that the customer will walk in and records his/her time until he/she logged out and display a message the amount he/she will be payed off. please help. thanks


回答1:


Review code and don't hesitate to ask what is unclear:

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();
    }
}


来源:https://stackoverflow.com/questions/42902512/how-to-reset-a-timer-in-java-gui-and-display-message-after-stop

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!