package java实践;
import java.text.SimpleDateFormat;
import java.util.Date;
import javax.swing.JOptionPane;
import javax.swing.JTextArea;
public class Date_time {
public Date_time(JTextArea textArea) {
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");//
// TODO Auto-generated constructor stub
String hehe = dateFormat.format(new Date());
JOptionPane.showMessageDialog(null, hehe, "时间", JOptionPane.DEFAULT_OPTION);
textArea.append(" "+hehe);
}
}