SimpleDateFormat类
- 年 yyyy
- 月 MM
- 日 dd
- 时 HH
- 分 mm
- 秒 ss
- 毫秒 SS
日期格式化显示(Date转换成String)
Date date=new Date();
SimpleDateFormat sdf1=new SimpleDateFormat("yyyyMMdd");
SimpleDateFormat sdf2=new SimpleDateFormat("yyyy-MM-dd");
SimpleDateFormat sdf3=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
SimpleDateFormat sdf4=new SimpleDateFormat("yyyy年MM月dd日HH时mm分ss秒");
String s1 = sd1.format(date);
String s2 = sd2.format(date);
String s3 = sd3.format(date);
String s4 = sd4.format(date);
字符串转换成日期(String转换成Date)
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
String time = "2019-01-11";
Date date = sdf.parse(time);