java - 将具有给定偏移量的日期时间转换为 UTC Java

标签 java datetime java-8 datetimeoffset

鉴于我有字符串“2019-11-05/23:00”和偏移量“+07:00”,

我将如何在 Java(8) 中将其转换为 LocalDateTime UTC。

我当前的代码

@GetMapping("postDate/{date}")
public void testPost(@RequestParam("timezone") String timeZone, @PathVariable String date) {
    String format = "yyyy-MM-dd-HH:mm";
    String offset = timeZone;
    System.out.println(date);
    LocalDateTime timeWithOffset = LocalDateTime.parse(date,
                                                       DateTimeFormatter.ofPattern(format));

    System.out.println("\n\n\n" + timeWithOffset + "\n\n\n");

    // Cant Figure Out to get LocalDateTime timeInUTC
}

postman 的请求

http://localhost:8080/postDate/2019-11-05-23:00?timezone=+07:00

最佳答案

您可以在 java.time 中使用区域和偏移感知类。你得到一个偏移量(我建议相应地命名参数,因为偏移量不是时区)和日期时间,这足以将同一时刻转换为不同的时区或偏移量。

看看这个例子并阅读评论:

public static void main(String[] args) {
    // this simulates the parameters passed to your method
    String offset = "+07:00";
    String date = "2019-11-05/23:00";

    // create a LocalDateTime using the date time passed as parameter
    LocalDateTime ldt = LocalDateTime.parse(date,
                                            DateTimeFormatter.ofPattern("yyyy-MM-dd/HH:mm"));
    // parse the offset
    ZoneOffset zoneOffset = ZoneOffset.of(offset);
    // create an OffsetDateTime using the parsed offset
    OffsetDateTime odt = OffsetDateTime.of(ldt, zoneOffset);
    // print the date time with the parsed offset
    System.out.println(zoneOffset.toString()
            + ":\t" + odt.format(DateTimeFormatter.ISO_OFFSET_DATE_TIME));
    // create a ZonedDateTime from the OffsetDateTime and use UTC as time zone
    ZonedDateTime utcZdt = odt.atZoneSameInstant(ZoneOffset.UTC);
    // print the date time in UTC using the ISO ZONED DATE TIME format
    System.out.println("UTC:\t"
            + utcZdt.format(DateTimeFormatter.ISO_ZONED_DATE_TIME));
    // and then print it again using your desired format
    System.out.println("UTC:\t"
            + utcZdt.format(DateTimeFormatter.ofPattern("yyyy-MM-dd-HH:mm")));
}

我系统的输出是:

+07:00: 2019-11-05T23:00:00+07:00
UTC:    2019-11-05T16:00:00Z
UTC:    2019-11-05-16:00

对于相反的情况(你得到一个 UTC 时间和一个偏移量并想要 OffsetDateTime),这可能有效:

public static void main(String[] args) {
    // this simulates the parameters passed to your method
    String offset = "+07:00";
    String date = "2019-11-05/16:00";
    // provide a pattern
    String formatPattern = "yyyy-MM-dd/HH:mm";
    // and create a formatter with it
    DateTimeFormatter dtf = DateTimeFormatter.ofPattern(formatPattern);
    // then parse the time to a local date using the formatter
    LocalDateTime ldt = LocalDateTime.parse(date, dtf);
    // create a moment in time at the UTC offset (that is just +00:00)
    Instant instant = Instant.ofEpochSecond(ldt.toEpochSecond(ZoneOffset.of("+00:00")));
    // and convert the time to one with the desired offset
    OffsetDateTime zdt = instant.atOffset(ZoneOffset.of(offset));
    // finally print it using your formatter
    System.out.println("UTC:\t" + ldt.format(dtf));
    System.out.println(zdt.getOffset().toString()
            + ": " + zdt.format(DateTimeFormatter.ofPattern(formatPattern)));
}

输出是这样的:

UTC:    2019-11-05/16:00
+07:00: 2019-11-05/23:00

关于java - 将具有给定偏移量的日期时间转换为 UTC Java,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58097879/

相关文章:

java - 在java中让硬币变得不公平

python - 如何从 timedelta 变量中删除秒数?

java - v-> v>5 的解释

java - 程序退出时清除 JTextArea.copy() 剪贴板

java - Wildfly Swarm + Maven 填充临时目录

java - 指定 Gattleing 的 Java 位置

mysql - 我有两个名为事件表和日期表的表。我想显示以下显示表而不使用 sql 复制行

c# - C# 日期时间格式中的单引号是什么意思?

java - JDK中有 double 减法的方法引用吗?

java - Java Duration 的最大值是多少