当前时间的时间戳转换成 2020-01-10 10:52:22
DateTimeUtil.getCurrentDateString("yyyy-MM-dd HH:mm:ss")
当前时间的时间戳转换成 2020-01-10
DateTimeUtil.getCurrentDateString("yyyy-MM-dd")
工具类方法
/**
* 时间戳转换日期格式
* @param date yyyy-MM-dd HH:mm:ss or yyyyMMdd
* @param dateFormat
* @return
*/
public static String getDateFormatString(String date,String dateFormat) {
if (date == null) {
return " ";
} else {
SimpleDateFormat sdf = new SimpleDateFormat(dateFormat);
sdf.setTimeZone(TimeZone.getDefault());
return sdf.format(date);
}
}