Created
February 6, 2020 03:27
-
-
Save higarin/1e44e3291d65d17681ade7d3a0bb57d1 to your computer and use it in GitHub Desktop.
OffsetDateTime
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
OffsetDateTime.of( | |
OffsetDateTime | |
.now(ZoneId.of("Asia/Tokyo")) | |
.atZoneSameInstant(ZoneId.of("UTC")) | |
.toLocalDateTime(), | |
ZoneOffset.UTC) | |
.atZoneSameInstant(ZoneId.of("Asia/Tokyo")); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment