一、字符串转时间
DateFormat dateFormat = new SimpleDateFormat("yyyy");
String str = "2018";
Date date = null;
try {
date = dateFormat.parse(str);
} catch (ParseException e) {
e.printStackTrace();
}
二、时间转字符串
DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Date date=new Date();
String str=dateFormat.format(date);
三、时间格式
年:yyyy 或 yy
月:MM
日:dd
时:HH
分:mm
秒:ss