gpt4 book ai didi

Java 11 解析本地时间 HH :mm am/pm does not work , Java 8 做

转载 作者:行者123 更新时间:2023-12-05 09:32:44 25 4
gpt4 key购买 nike

我正在运行以下测试来解析 HH:mm am/pm 格式的时间,所有 3 个测试都在 Java 8 (1.8.0_282) 中通过,但在最新的 Java 11_0_11 版本中第二和第三个测试失败,只有非常简单的测试(没有 am/pm 信息的第一次测试)在 Java 11 中通过。另外我正在运行 Oracle JDK 11 以及 AdoptOpenJDK 11,结果相同。

  • 我的主要需求

我有传入的 JSON 有效负载,其中包含(作为字符串)时间之前和之后的上午/下午信息。我需要从它们中解析本地时间,然后将本地时间相互比较,看看一个时间是否早于另一个时间。

@Test
public void testLocalTime1() { //passed with java8 and java 11
LocalTime localTime = LocalTime.parse("11:15", DateTimeFormatter.ofPattern("HH:mm"));
System.out.println(localTime);
}

@Test
public void testLocalTime2() {//passed with java8 only, failed with java 11
LocalTime test = LocalTime.parse("8:00 am".toUpperCase(),
DateTimeFormatter.ofPattern("h:mm a"));
System.out.println(test);

}

@Test
public void testLocalTime3() {//passed with java8 only, failed with java 11
LocalTime test = LocalTime.parse("11:00 AM",
DateTimeFormatter.ofPattern("HH:mm a"));
System.out.println(test);

}

我得到的错误是

java.time.format.DateTimeParseException: Text '8:00 AM' could not be parsed at index 0

at java.base/java.time.format.DateTimeFormatter.parseResolved0(DateTimeFormatter.java:2046)
at java.base/java.time.format.DateTimeFormatter.parse(DateTimeFormatter.java:1948)
at java.base/java.time.LocalTime.parse(LocalTime.java:463)
at com.company.SampleTest.testLocalTime2_1(SampleTest.java:45)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:566)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306)
at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100)
at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63)
at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329)
at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293)
at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306)
at org.junit.runners.ParentRunner.run(ParentRunner.java:413)
at org.junit.runner.JUnitCore.run(JUnitCore.java:137)
at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:69)
at com.intellij.rt.junit.IdeaTestRunner$Repeater.startRunnerWithArgs(IdeaTestRunner.java:33)
at com.intellij.rt.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:221)
at com.intellij.rt.junit.JUnitStarter.main(JUnitStarter.java:54)

Java 11版本是最新的

java -version


java version "11.0.11" 2021-04-20 LTS
Java(TM) SE Runtime Environment 18.9 (build 11.0.11+9-LTS-194)
Java HotSpot(TM) 64-Bit Server VM 18.9 (build 11.0.11+9-LTS-194, mixed mode)

最佳答案

你的代码有两个问题:

  1. 您还没有将 LocaleDateTimeFormatter 一起使用,它是 Locale 敏感类型。 Never use SimpleDateFormat or DateTimeFormatter without a Locale .
  2. 您已使用 H 而不是 h 作为 12 小时格式。符号 H 用于 24 小时格式。

演示:

import java.time.LocalTime;
import java.time.format.DateTimeFormatter;
import java.time.format.DateTimeFormatterBuilder;
import java.util.Locale;

public class Main {
public static void main(String[] args) {
DateTimeFormatter dtf = new DateTimeFormatterBuilder()
.parseCaseInsensitive()
.appendPattern("h:m a")
.toFormatter(Locale.ENGLISH);

System.out.println(LocalTime.parse("8:00 am", dtf));
System.out.println(LocalTime.parse("11:00 AM", dtf));
}
}

输出:

08:00
11:00

了解有关 java.time 的更多信息,modern Date-Time API * 来自 Trail: Date Time .

关于Java 11 解析本地时间 HH :mm am/pm does not work , Java 8 做,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67708831/

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