静止的流水的学习日志
静止的流水
全部博文(210)
Windows(1)
Linux(31)
2011年(34)
2010年(121)
2009年(37)
2008年(18)
cynthia
wojiuzhu
jd_lzh
鄙人姓王
Jack_Tan
fanbiubi
猜我咯
aaccp1
chrisy52
分类: Java
2011-02-18 15:15:25
package hello;import java.awt.*;import java.awt.event.*;import javax.swing.*;import java.util.*;class SimpleFrame extends JFrame implements ActionListener{ JButton b1; JLabel l1; JLabel l2; public SimpleFrame(String title){ setTitle(title); setSize(300,500); l1 = new JLabel("一个新的GUI应用程序的例子!",JLabel.CENTER); l2 = new JLabel(); b1 = new JButton("时间"); b1.setActionCommand("time"); b1.addActionListener(this); this.getContentPane().add(l1,BorderLayout.NORTH); this.getContentPane().add(l2,BorderLayout.CENTER); this.getContentPane().add(b1,BorderLayout.SOUTH); } public void actionPerformed(ActionEvent e){ Calendar c1 = Calendar.getInstance(); if(e.getActionCommand().equals("time")){ l2.setText(Calendar.HOUR_OF_DAY+"时"+c1.get(Calendar.MONTH)+"分"); } else System.exit(0); }}public class Hello{ public static void main(String args[])throws Exception{ String title = new String("测试程序"); SimpleFrame frame = new SimpleFrame(title); frame.setVisible(true); }}
上一篇:诗歌
下一篇:ClearCase使用方法
chinaunix网友2011-03-06 16:39:02
很好的, 收藏了 推荐一个博客,提供很多免费软件编程电子书下载: http://free-ebooks.appspot.com
登录 注册