大家好,又见面了,我是你们的朋友全栈君。
1. 问题描述:
前台一个日期选择组件,提交的数据格式为“1991-05-10”,后台使用 SimpleDateFormat 进行转换,获取到时间戳,存入数据库,数据库字段为 bigint 类型,保存后,日期回显,显示为 “1991-05-09”,出现一天的误差,但不是所有日期都存在误差。
前台获取到时间戳,转换后调用 toLocaleDateString 回显数据。
2. 解决方法:
后台,在使用 SimpleDateFormat 时,设置时区,如下:
simpleDateFormat.setTimeZone(TimeZone.getTimeZone("UTC"));
3. 相关代码如下:
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);
}
<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>
<input id="birthday_input" name="birthday" value="" onchange="save()" style="text-align: right"/>
个人微信公众号,追寻自由,分享生活!
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/149399.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...