Table of Contents
Question content
Solution
Home Java LocalDate.parse and ResolverStyle.STRICT, for Asia/Hong Kong, return unexpected results

LocalDate.parse and ResolverStyle.STRICT, for Asia/Hong Kong, return unexpected results

Feb 13, 2024 pm 08:54 PM

php editor Xiaoxin will introduce the issues about LocalDate.parse and ResolverStyle.STRICT in Java in this article. When using these methods in Asia or Hong Kong, you may get unexpected results. We will explore this issue and provide solutions.

Question content

My input is 19.12.0009, the expected value is dec 19 00:00:00 hkt 9, but the returned result is dec 21 00:23:18 hkt 9, why? code show as below:

DateTimeFormatter formatter = DateTimeFormatter.ofPattern("dd.MM.uuuu")
                        .withResolverStyle(ResolverStyle.STRICT);
LocalDate localDate = LocalDate.parse("19.12.0009", formatter);
Instant instant = Instant.from(localDate.atStartOfDay(ZoneId.of("Asia/Hong_Kong")));
Date resultDate = Date.from(instant);
System.out.println("resultDate" + resultDate);
Copy after login

Solution

There is a concept of transition in zonerules, which has savingslocaltransitions. I found that for some reason (probably historical), the savings in "asia/hong_kong" local conversion start at 1904-10-30t00:36:42. resolverstyle.strict Not the problem here!

That's why you see 00:23:18 hkt 9.

If you change the code, for example:

localdate localdate = localdate.parse("19.12.1904", formatter);
Copy after login

Expected output:

resultDate Mon Dec 19 01:00:00 JST 1904
Copy after login

The above is the detailed content of LocalDate.parse and ResolverStyle.STRICT, for Asia/Hong Kong, return unexpected results. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)