日期和时间模式:
格式例子:
调用构造方法即可:
实现:
package javase.date;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
/*
注意:在日期格式中,除了y M d H m s S这些字符不能随便写之外,剩下的符号格式自己随意组织。
*/
public class DateTest01 {
public static void main(String[] args) throws ParseException {
//获取系统当前时间(精确到毫秒的系统当前时间)
//直接调用无参数构造方法就行。
Date nowTime = new Date();
System.out.println(nowTime); //Thu Jul 29 17:57:29 CST 2021
//日期格式化
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss SSS");
//SimpleDateFormat sdf = new SimpleDateFormat("yyyy/MM/dd");
//SimpleDateFormat sdf = new SimpleDateFormat("yy/MM/dd HH:mm:ss");
String nowTimeStr = sdf.format(nowTime);
System.out.println(nowTimeStr);
//日期字符串String转换成Date类型
String time = "2010-09-09 18:18:17 888";
//SimpleDateFormat sdf2 = new SimpleDateFormat("格式不能乱写,要和日期字符串格式相同");
//注意:字符串的日期格式和SimpleDateFormat对象执行的日期格式要一致。不然会出现异常:java.text.ParseException
SimpleDateFormat sdf2 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss SSS");
Date dateTime = sdf2.parse(time);
System.out.println(dateTime);
}
}