public class Test4 {
public static void main(String[] args) {
// extracted();
//利用空参构造创建SimpleDateFormat对象,默认格式
Date d1 = new Date();
SimpleDateFormat sdf1 =new SimpleDateFormat();
String str1 = sdf1.format(d1);
System.out.println(str1);
//利用带参构造创建SimpleDateFormat对象,指定格式
SimpleDateFormat sfd2 =new SimpleDateFormat("yyyy年MM月dd日 HH:mm:ss E");
String str2 = sfd2.format(d1);
System.out.println(str2);
}
运行结果:
22-10-12 下午9:41
2022年10月12日 21:41:32 星期三
标签:String,sdf1,SimpleDateFormat,时间,设置,Date,new,d1
From: https://www.cnblogs.com/knlf/p/16786238.html