import java.util.*;
import java.text.*;
public class DateDemo {
public static void main(String[] args) {
Date d= new Date();
System.out.println(d);//打印时间不好看懂,需要重新按照我的自己的格式来定义
//将模式封装到SimpleDateformat对象中
SimpleDateFormat sdf = new SimpleDateFormat("yyyy年MM月dd日");
//调用format方法让模式格式化对定对象Date对象
String time = sdf.format(d);
System.out.println("time:"+time);
}
}
|
|