//时间戳转日期20220406
public static String parseDateToStr(Date time, String timeFormat) {
DateFormat dateFormat = new SimpleDateFormat(timeFormat);
return dateFormat.format(time);
}
//获取当天的开始时间
public static Long getNowDayStartTime(Date dateParam) {
String startTime = DateFormatUtils.format(dateParam, "yyyy-MM-dd 00:00:00");
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Date date = null;
try {
date = simpleDateFormat.parse(startTime);
} catch (ParseException e) {
e.printStackTrace();
}
return date.getTime();
}
//获取当天的结束时间
public static Long getNowDayEndTime(Date dateParam) {
String endTime = DateFormatUtils.format(dateParam, "yyyy-MM-dd 23:59:59");
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Date date = null;
try {
date = simpleDateFormat.parse(endTime);
} catch (ParseException e) {
e.printStackTrace();
}
return date.getTime();
}
public static Date getDayEnd() {
Calendar cal = Calendar.getInstance();
cal.set(11, 23);
cal.set(12, 59);
cal.set(13, 59);
return cal.getTime();
}
文章来源地址https://www.toymoban.com/news/detail-406448.html
文章来源:https://www.toymoban.com/news/detail-406448.html
到了这里,关于时间格式转换的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!