gpt4 book ai didi

java - 如何从 spring 请求中获取时区偏移量?

转载 作者:行者123 更新时间:2023-12-02 02:43:48 25 4
gpt4 key购买 nike

我有课:

    @RestController
@RequestMapping("/api/user")
public class UserCtrl {
@RequestMapping(value = "/update", method = RequestMethod.POST)
public ResponseEntity updateUser(@RequestBody StringModel updateModel) {

}
}

如何通过此请求获取时区偏移?这可能吗?

它写入一个日期来更新用户,但需要保存时区,或者更确切地说是它的偏移量,以正确呈现结果。

最佳答案

    HttpServletRequest request = ((ServletRequestAttributes) RequestContextHolder.currentRequestAttributes()).getRequest();
Locale locale = request.getLocale();
Calendar calenda = Calendar.getInstance(locale);
TimeZone timeZone = calenda.getTimeZone();
int rawOffset = timeZone.getRawOffset();
ZoneId zoneId = timeZone.toZoneId();
ZoneRules rules = zoneId.getRules();

rawOffset 的时间以毫秒为单位,例如 3600000 -> +01:00

关于java - 如何从 spring 请求中获取时区偏移量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44969644/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com