import java.text.SimpleDateFormat;
import java.util.Date;
public class DateDemo {
public static void main(String[] args) {
Date d = new Date();
//将模式封装在SimpleDateFormat对象中
SimpleDateFormat sdf = new SimpleDateFormat("yyyy年MM月dd日");
//调用format方法让模式格式化指定Date对象
String time = sdf.format(d);
System.out.println(time);
}
} |