DateFormat类
java.text.DateFormat:是日期/时间格式化子类的抽象类
作用:
格式化(也就是日期 -> 文本)、解析(文本 -> 日期)
成员方法:
String format(Date date)按照指定的模式,把Date日期,格式化为符合模式的字符串
Date parse(String source) 把符合模式的字符串,解析为Date日期
DateFormat类是一个抽象类,无法直接创建对象使用,可以使用DateFormat的子类
构造方法:
SimpleDateFormat(String pattern) 用给定的模式和默认语言环境的日期格式符号构造 SimpleDateFormat。
参数:
String pattern:传递指定的模式
模式:区分大小写
y 年
M 月
d 日
H 时
m 分
s 秒
对应的模式,会把模式替换为对应的日期和时间
“yyyy-MM-dd HH:mm:ss”
"yyyy年MM月dd日 HH时mm分ss秒"
模式中的字母不能更改,连接模式的符号可以改变
使用DateFormat的format
//创建SimpleDateFormat对象,构造方法中传递指定的模式 SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); //调用SimpleDateFormat对象中的方法format,按照构造方法中指定的模式,把Date日期格式化为符合模式的字符串(文本) Date date = new Date(); String text = sdf.format(date); System.out.println(date); //按照指定模式打印 System.out.println(text);
使用DateFormat的parse
//创建SimpleDateFormat对象,构造方法中传递指定的模式 SimpleDateFormat sim = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); //创建SimpleDateFormat对象中的方法parse,把符合构造方法中模式的字符串,解析为Date日期 try { Date parse = sim.parse("2022-07-04 14:04:23"); System.out.println(parse); } catch (ParseException e) { e.printStackTrace(); }