如何在JAVA的GUI界面里插入一个显示实时时间的JPanel?

2025-01-18 14:59:10
推荐回答(2个)
回答1:

显示实时时间的JPanel
1.重写JPanel的paint方法,在JPanel上画上实时时间的字符串。(下边的例子是用的这个方法)
2.在JPanel加个label,在上面设置实时时间的字符串。

--------------------------------------------------------------------------
import java.awt.Graphics;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Timer;
import java.util.TimerTask;

import javax.swing.JFrame;
import javax.swing.JPanel;

public class ShowTimeApp extends JFrame {
// 时间格式
private SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");

public ShowTimeApp() {

// 设置显示窗口的参数
setDefaultCloseOperation(EXIT_ON_CLOSE);
// 居中显示
setLocationRelativeTo(null);
// 窗口大小
setSize(200, 150);
// 窗口不可改变大小
setResizable(false);
// 添加时间的JPanel
getContentPane().add(new TimePanel());
// 显示
setVisible(true);

// 设置时间变化的任务
Timer timer = new Timer();
timer.schedule(new ShowTime(), new Date(), 1000);

}

class ShowTime extends TimerTask {
public void run() {
// 刷新
repaint();
}
}

class TimePanel extends JPanel {
public void paint(Graphics g) {
super.paint(g);
// 显示时间
g.drawString(sdf.format(new Date()), 10, 10);
}
}

public static void main(String[] args) {
new ShowTimeApp();
}
}

回答2:

java.util.Timer包下有个有参的方法:

scheduleAtFixedRate(TimerTask task, Date firstTime,
long period)
参数分别代表(时间任务,开始时间,时间周期)
Timer timer=new Timer();
timer.scheduleAtFixedRate(new TimerTask() {
public void run() { //从这里开始,
Date date=new Date();
DateFormat df=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String format = df.format(date);

getJLabeldate().setText(format); //JLable调用settext方法,输入时间字符串。
} //到这里结束,是TimerTask的匿名内部类,重写run方法,
}, date, 1000); //当前时间,延迟时间1000毫秒。