JAVA中DATA和字符串互换
程序员文章站
2022-04-25 19:31:10
...
一、日期转字符串(格式化)
Date date = new Date();
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
System.out.println(sdf.format(date));
sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
System.out.println(sdf.format(date));
sdf = new SimpleDateFormat("yyyy年MM月dd日 HH:mm:ss");
System.out.println(sdf.format(date));
二、字符串转日期(解析)
String string = "2019-03-19 19:23:16";
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
System.out.println(sdf.parse(string));
上一篇: Aop实现操作日志入库管理
下一篇: winfrom图片放大器