大家好,又见面了,我是你们的朋友全栈君。
1. 问题描述: 前台一个日期选择组件,提交的数据格式为“1991-05-10”,后台使用 SimpleDateFormat 进行转换,获取到时间戳,存入数据库,数据库字段为 bigint 类型,保存后,日期回显,显示为 “1991-05-09”,出现一天的误差,但不是所有日期都存在误差。 前台获取到时间戳,转换后调用 toLocaleDateString 回显数据。 2. 解决方法: 后台,在使用 SimpleDateFormat 时,设置时区,如下:
代码语言:javascript复制simpleDateFormat.setTimeZone(TimeZone.getTimeZone("UTC"));
3. 相关代码如下:
代码语言:javascript复制SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");
simpleDateFormat.setTimeZone(TimeZone.getTimeZone("UTC"));
Date birthdayDate = null;
try {
birthdayDate = simpleDateFormat.parse(birthday);
long time = birthdayDate.getTime();
long l = time / 1000;
member.setBirthday(l);
} catch (ParseException e) {
LOGGER.error("出生日期转换异常", e);
}
代码语言:javascript复制<script> // 变换日期 Date.prototype.toLocaleDateString = function () {
return this.getFullYear() "-" (this.getMonth() 1) "-" this.getDate(); }; var date_before = $("#birthday_source").val(); var unixTimestamp = new Date(date_before * 1000); var new_date = unixTimestamp.toLocaleDateString(); $("#birthday_input").val(new_date); </script>
代码语言:javascript复制 <input id="birthday_input" name="birthday" value="" onchange="save()" style="text-align: right"/>
发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/149399.html原文链接:https://javaforall.cn