Java Instant到LocalDateTime尾随零

时间:2018-11-15 07:43:02

标签: java spring-boot java-8 instant

我使用Spring Boot在Java中将Instant转换为LocalDateTime,如下所示

LocalDateTime.ofInstant(timeInUtc, zoneId);

在测试中,我得到了一个正则表达式来检查我的资源是否返回带有LocalDateTime的Json。 Regex期望使用以下格式的JSON值:

 2018-11-15T08:38:49.382

但是看起来尾随零已被删除,这意味着代替

2018-11-15T08:38:49.380

这符合正则表达式,我明白了

 2018-11-15T08:38:49.38

如何确定尾随零没有被删除?

谢谢!

1 个答案:

答案 0 :(得分:5)

格式化日期将有助于保留结尾的零

DateTimeFormatter.ofPattern("yyyy-MM-dd'T'HH:mm:ss.SSS")

输出如下:

  

2018-11-15T08:03:45.580

以下代码:

public class Post2 {

    public static void main(String[] args) {

        String date = LocalDateTime.ofInstant(Instant.now(), ZoneId.of("UTC"))
           .format(DateTimeFormatter.ofPattern("yyyy-MM-dd'T'HH:mm:ss.SSS"));
        System.out.println(date);

    }
}

编辑 添加正则表达式匹配项以匹配具有和不具有毫秒的日期时间。

        String regex = "^\\d\\d\\d\\d-(0?[1-9]|1[0-2])-(0?[1-9]|[12][0-9]|3[01]) (00|[0-9]|1[0-9]|2[0-3]):([0-9]|[0-5][0-9]):([0-9]|[0-5][0-9])(\\.{0,1}[0-9]{1,3})$";

        String str1 = "2015-1-11 13:57:24";

        String str2 = "2015-1-11 13:57:24.0";
        String str3 = "2015-1-11 13:57:24.00";
        String str4 = "2015-1-11 13:57:24.000";
        String str5 = "2015-1-11 13:57:24.1";
        String str6 = "2015-1-11 13:57:24.12";
        String str7 = "2015-1-11 13:57:24.1222";
        String str8 = "2015-1-11 13:57:24.02";

        System.out.println( str1.matches(regex));
        System.out.println(str2.matches(regex));
        System.out.println(str3.matches(regex));
        System.out.println(str4.matches(regex));
        System.out.println(str5.matches(regex));
        System.out.println(str6.matches(regex));
        System.out.println(str7.matches(regex));
        System.out.println(str8.matches(regex));

输出:

true
true
true
true
true
true
false
true