我正在尝试创建一个应用程序,其中用户将时间和日期输入到JTable
中,然后在那时收到警报。我计划的方式是,条目按时间顺序显示,最上面的一行显示在最接近的位置,然后每5分钟与用户的日期/时间进行比较,直到它们匹配为止。
我觉得我可以算出该计划中的所有内容,除了实际扫描中只有顶行和3列中的2列(DATE和TIME列,而不是NAME)。如果有人对如何进行此工作有任何建议,或者如果我应该更改处理此问题的方式,我将不胜感激。
答案 0 :(得分:0)
我希望下面的示例能够回答您的问题。
(这里我假设该表是按日期和时间排序的,最早的警报位于该表的顶部。)
import javax.swing.*;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.TimerTask;
import java.util.Timer;
public class DateTimeTable
{
public static void main(String[] args)
{
JFrame f = new JFrame();
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JTable table = new JTable(
new String[][] {
{"Water plants", "2019.01.12", "09:21"},
{"Read Java book", "2019.01.12", "19:30"},
{"Go to bed", "2019.01.12", "22:30"}},
new String[] {"Name", "Date", "Time"});
TimerTask task = new TimerTask()
{
@Override
public void run()
{
String date = table.getValueAt(0, 1).toString();
String time = table.getValueAt(0, 2).toString();
LocalDateTime alertTime = LocalDateTime.parse(date + " " + time,
DateTimeFormatter.ofPattern("yyyy.MM.dd HH:mm"));
if (alertTime.isBefore(LocalDateTime.now()))
{
JOptionPane.showMessageDialog(f, table.getValueAt(0, 0));
}
else
{
System.out.println("No alerts");
}
}
};
Timer timer = new Timer();
timer.schedule(task, 1000, 5 * 60 * 1000);
f.getContentPane().add(new JScrollPane(table));
f.setBounds(300, 200, 400, 300);
f.setVisible(true);
}
}