java 常用工具类

1. 时间格式化

import org.apache.commons.lang3.time.FastDateFormat;
...
FastDateFormat df = FastDateFormat.getInstance("yyyy-mm-dd");
// 将指定格式字符串(上面的 yyyy-mm-dd,可根据需要自行配置)日期转为Date对象
Date dt = df.parse("2022-01-01");
// 将 Date 对象格式话输出为字符串
System.out.println(df.format(new Date(System.currentTimeMillis())));
posted @ 2022-08-29 13:12  BrianSun  阅读(20)  评论(0编辑  收藏  举报