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())));
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/282863.html