clocklabel.java
来自「java swing 开发代码」· Java 代码 · 共 23 行
JAVA
23 行
// ClockLabel.java// An extension of the JLabel class that listens to events from// a Timer object to update itself with the current date & time.//package jswing.ch27;import java.util.Date;import java.awt.event.*;import javax.swing.*;public class ClockLabel extends JLabel implements ActionListener { public ClockLabel() { super("" + new Date()); Timer t = new Timer(1000, this); t.start(); } public void actionPerformed(ActionEvent ae) { setText((new Date()).toString()); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?