在倒数计时器上使用 windowFocusListener

Use windowFocusListener on a countdown timer

我正在尝试制作一个倒数计时器,当 window 出现在我的屏幕顶部时,它只会 运行。

我试过这个:

import java.awt.BorderLayout;
import java.awt.Dimension;
import java.awt.event.WindowEvent;
import java.awt.event.WindowFocusListener;
import javax.swing.JFrame;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;

public class TimerVisible extends JFrame implements WindowFocusListener{
    static TimerVisible frame = new TimerVisible("chrono",2,1,3);//I set a random time
    JTextArea display;
    private Counter counter;

    public static void main(String[] args) {
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.addComponentsToPane();
        frame.pack();
        frame.setVisible(true);
    }

    private void addComponentsToPane() {
        display = new JTextArea();
        display.setEditable(true);
        JScrollPane scrollPane = new JScrollPane(display);
        scrollPane.setPreferredSize(new Dimension(500, 450));
        getContentPane().add(scrollPane, BorderLayout.CENTER);
        addWindowFocusListener(this);
    }

    public TimerVisible(String name, int hours, int minutes, int secondes) {
        super(name);
        counter=new Counter(hours, minutes, secondes); //Counter is in secondes but is created with hours, minutes and seconds
    }


    public void windowGainedFocus(WindowEvent e) {
        displayMessage("WindowFocusListener method called: windowGainFocus.");
        try{
            while(counter.getCounter()!=0){
                Thread.sleep(1000);
                displayMessage(counter.toString());
                counter.decrement();
            }
        }
        catch(InterruptedException exc){
            System.exit(-1);
        }
    }

    public void windowLostFocus(WindowEvent e) {
        displayMessage("WindowFocusListener method called: windowLostFocus.");
    }

    private void displayMessage(String msg) {
        display.append(msg+"\n");
        System.out.println(msg);
    }
}

当我 运行 这个程序时,它在我的终端上显示消息和倒计时而不是 window,但是如果我在评论下设置 while loop,它会正确显示window 上的消息。有没有人知道为什么我有这种差异?

谢谢

您的 while 循环在 Swing 事件线程上 运行,阻止它并阻止它绘制到 GUI 或与用户交互。请改用 Swing Timer。请注意,对于 Swing 定时器,您不会有 while 循环,而是会重复调用 actionPerformed,直到您停止定时器。

像这样的东西可能接近工作(代码未测试)

import java.awt.BorderLayout;
import java.awt.Dimension;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.WindowEvent;
import java.awt.event.WindowFocusListener;

import javax.swing.JFrame;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
import javax.swing.Timer;

public class TimerVisible extends JFrame implements WindowFocusListener{
    private static final int TIMER_DELAY = 1000;
    static TimerVisible frame = new TimerVisible("chrono",2,1,3);//I set a random time
    JTextArea display;
    private Counter counter;
    Timer timer = null;

    public static void main(String[] args) {
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.addComponentsToPane();
        frame.pack();
        frame.setVisible(true);
    }

    private void addComponentsToPane() {
        display = new JTextArea();
        display.setEditable(true);
        JScrollPane scrollPane = new JScrollPane(display);
        scrollPane.setPreferredSize(new Dimension(500, 450));
        getContentPane().add(scrollPane, BorderLayout.CENTER);
        addWindowFocusListener(this);
    }

    public TimerVisible(String name, int hours, int minutes, int secondes) {
        super(name);
        counter=new Counter(hours, minutes, secondes); //Counter is in secondes but is created with hours, minutes and seconds
    }


    public void windowGainedFocus(WindowEvent e) {
        displayMessage("WindowFocusListener method called: windowGainFocus.");
        if (timer != null && timer.isRunning()) {
            return;
        }

        timer = new Timer(TIMER_DELAY, new ActionListener() {

            @Override
            public void actionPerformed(ActionEvent e) {
                if (counter.getCounter() <= 0) {
                    timer.stop();
                } else {
                    displayMessage(counter.toString());
                    counter.decrement();
                }

            }
        });
        timer.start();
    }

    public void windowLostFocus(WindowEvent e) {
        displayMessage("WindowFocusListener method called: windowLostFocus.");
    }

    private void displayMessage(String msg) {
        display.append(msg+"\n");
        System.out.println(msg);
    }
}