import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.Calendar;
import javax.swing.*;
public class ccc implements ActionListener {
    JFrame f;
    JPanel p;
    JButton b1,b2;
    JLabel l1,l2,l3,l4,l5,l6,l7,l8,l9;
    JTextField t1,t2,t3,t4,t5,t6;
    public ccc(){
        f=new JFrame();
        p=new JPanel();
        p.setLayout(null);
        b1=new JButton("确定");
        l1=new JLabel("当前时间: ");
        l2=new JLabel("年");
        l3=new JLabel("月");
        l4=new JLabel("日");
        l5=new JLabel("时");
        l6=new JLabel("分");
        l7=new JLabel("秒");
        t1=new JTextField();
        t2=new JTextField();
        t3=new JTextField();
        t4=new JTextField();
        t5=new JTextField();
        t6=new JTextField();
        f.add(p);
        p.add(b1);
        p.add(l1);
        p.add(l2);
        p.add(l3);
        p.add(l4);
        p.add(l5);
        p.add(l6);
        p.add(l7);
        p.add(t1);
        p.add(t2);
        p.add(t3);
        p.add(t4);
        p.add(t5);
        p.add(t6);
        b1.setBounds(160,150,100,50);
        l1.setBounds(30,50,80,20);
        l2.setBounds(150,50,50,20);
        l3.setBounds(250,50,50,20);
        l4.setBounds(350,50,50,20);
        l5.setBounds(150,80,50,20);
        l6.setBounds(250,80,50,20);
        l7.setBounds(350,80,50,20);
        t1.setBounds(90,50,50,20);
        t2.setBounds(180,50,50,20);
        t3.setBounds(280,50,50,20);
        t4.setBounds(90,80,50,20);
        t5.setBounds(180,80,50,20);
        t6.setBounds(280,80,50,20);
        f.setVisible(true);
        f.setSize(450,250);
        b1.addActionListener(this);
    }
    public static void main(String[] args) {
        new ccc();
    }
 public void actionPerformed(ActionEvent e) {
  Calendar ca1 = Calendar.getInstance();
   if(e.getSource()==b1){
    t1.setText(String.valueOf(Integer.toString(ca1.get(Calendar.YEAR))));
    t2.setText(String.valueOf(Integer.toString(ca1.get(Calendar.MARCH)+1)));
    t3.setText(String.valueOf(Integer.toString(ca1.get(Calendar.DATE))));
    t4.setText(String.valueOf(Integer.toString(ca1.get(Calendar.HOUR))));
    t5.setText(String.valueOf(Integer.toString(ca1.get(Calendar.MINUTE))));
    t6.setText(String.valueOf(Integer.toString( ca1.get(Calendar.SECOND))));
   }
 }
}

运行结果: