java的显示时间的程序

一个示例小程序,可以在对话框中显示当前时间

import java.util.Date;

import javax.swing.JDialog;
import javax.swing.JLabel;

public class ClockView extends JDialog {

	JLabel label = new JLabel();

	public ClockView() {
		this.add(label);
		this.setSize(200, 200);
		this.setDefaultCloseOperation(DISPOSE_ON_CLOSE);

		this.setVisible(true);
	}

	public static void main(String[] args) {
		ClockView time = new ClockView();
		while (true) {
			Date date = new Date();
			time.label.setText(date.toString());
		}
	}

}

你可能感兴趣的:(java)