public class testDateTime {
public static void main(String[] args) {
SimpleDateFormat date = new SimpleDateFormat("yyyyMMdd_HHmmss");
String str = date.format(new Date());
System.out.println(str);
}
三 、 使用Date 类(方法已过时,但还能用)
public static void main(String[] args) {
Date date = new Date();
System.out.print((date.getYear()+1900)+"-"+date.getMonth()+"-"+date.getDate())
} 作者: 黄方 时间: 2012-3-10 12:14