让我解释一下我要做的事情。
我有两个类JFrame
,StartJFrame
和TestingJFrame
。在main方法中,我启动了StartJFrame
。它有一个按钮,开始。当按下它时,我将其设置为隐藏该帧并启动TestingJFrame
。现在我在T estingJFrame
中没有任何内容。
在那个屏幕上,我希望在右下角有一个标签,它是一个计时器,从45秒开始计数到0。我还需要每隔10秒运行一些代码,并收集一些数据。 TestingJFrame
中有两个按钮,是和否。当按下其中一个按钮时,它应该停止计时器并保存信息。
数据基本上只是双倍。我只会在每次运行程序时收集一次数据。我有一个UserData
类,其中包含有关测试主题的一些信息,以及一个双精度列表,它每隔十分之一被添加一次。我有一个大致的想法如何在java中保存数据。
我的问题是,我应该如何设置计时器,使其从45秒开始倒计时,当它达到0或用户按下是或否按钮时,它会调用一个函数来保存数据?我想我可以处理保存数据部分。
很抱歉,如果这很容易,我是Java新手(来自c#),而Swing让我感到困惑。
答案 0 :(得分:3)
您可以使用javax.swing.Timer设置计时器。您也可以查看the official tutorial。
答案 1 :(得分:3)
第一部分(显示倒计时和停止计时器)相对容易......
public class TimerTest01 {
public static void main(String[] args) {
new TimerTest01();
}
public TimerTest01() {
EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (Exception ex) {
}
JFrame frame = new JFrame("Test");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.add(new TestPane());
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
});
}
public class TestPane extends JPanel {
private JLabel label;
private Timer timer;
private long startTime;
public TestPane() {
setLayout(new GridLayout(0, 1));
label = new JLabel("...");
label.setHorizontalAlignment(JLabel.CENTER);
final JButton btn = new JButton("Start");
btn.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
if (timer.isRunning()) {
timer.stop();
btn.setText("Start");
} else {
startTime = System.currentTimeMillis();
timer.restart();
btn.setText("Stop");
}
repaint();
}
});
add(label);
add(btn);
timer = new Timer(250, new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
long endTime = (startTime + 45000);
long timeLeft = endTime - System.currentTimeMillis();
if (timeLeft < 0) {
timer.stop();
label.setText("Expired");
btn.setText("Start");
} else {
label.setText(Long.toString(timeLeft / 1000));
}
repaint();
}
});
}
}
}
查看Swing Timer了解更多信息
你问的第二部分是含糊不清,可靠地为你提供答案。数据来自哪里?如何收集??