如何在JLabel中显示计时器

时间:2016-03-03 11:24:03

标签: java swing

我想在JLabel中显示一个计时器。所以我已经构建了这个代码,它可以工作,但我不知道这段代码是否正确。

public void cswing(){
   labelTempoGara = new TimeRefreshRace();
   labelTempoGara.start();
}

@SuppressWarnings("serial")
class TimeRefreshRace extends JLabel implements Runnable {

    private boolean isAlive = false;

    public void start() {
        threadTempoCorsa = new Thread(this);
        isAlive = true;
        threadTempoCorsa.start();
    }

    public void run() {
        int tempoInSecondi = programma.getTempoGara() % 60;
        int minuti = programma.getTempoGara() / 60;
        while (isAlive) {
            try {
                if (minuti <= 0 && tempoInSecondi<=1) {
                    isRun=false;
                    this.setText("00:00");
                    isAlive = false;
                    salvaDatiCorsa();
                    break;
                }
                if(tempoInSecondi<=1){
                    minuti--;
                    tempoInSecondi=60;
                }
                --tempoInSecondi;
                this.setText(minuti+":"+ tempoInSecondi);
                Thread.sleep(1000);

            } catch (InterruptedException e) {
                log.logStackTrace(e);
            }
        }

    }

    public void kill() {
        isAlive = false;
        isRun=false;
    }

}//fine autoclass

我再说一遍,这段代码可行,但我不知道是否正确使用JLabel和Runnable线程

1 个答案:

答案 0 :(得分:1)

以下是使用javax.swing.Timer重做的示例 因为你没有提供一个可运行的例子,我无法测试它是否有效,但我希望你能解决问题,如果存在的话。

注意不要导入java.util.Timer它是另一个同样需要与Swing线程同步的类(如示例中的线程)。

class TimeRefreshRace extends JLabel implements ActionListener {

    private Timer timer;

    public void start() {
        timer = new Timer(1000, this);
        timer.start();
    }

    public void actionPerformed(ActionEvent ae) {
        int tempoInSecondi = programma.getTempoGara() % 60;
        int minuti = programma.getTempoGara() / 60;
        if (minuti <= 0 && tempoInSecondi<=1) {
            this.setText("00:00");
            salvaDatiCorsa();
            break;
        }
        if(tempoInSecondi<=1){
            minuti--;
            tempoInSecondi=60;
        }
        --tempoInSecondi;
        this.setText(minuti+":"+ tempoInSecondi);

    }

    public void kill() {
        if (timer != null) {
            timer.stop()
        }
    }

}//fine autoclass