gpt4 book ai didi

java - 日期字符串的正确日期格式,如 "2013-11-16T08:46:00.000-06:00"

转载 作者:行者123 更新时间:2023-11-30 09:14:38 27 4
gpt4 key购买 nike

输入:

SimpleDateFormat inFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSZ");
SimpleDateFormat outFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'");

String unformattedDate = "2013-11-16T08:46:00.000-06:00";

String formattedDate = outFormat.format(inFormat.parse(unformattedDate ));

以上输出:

formattedDate = "2013-11-16T20:16:00.000Z"

期望的输出:

formattedDate = "2013-11-16T08:46:00.000Z"

谁能解释一下为什么转换后会出现这种差异以及如何获得所需的输出?

我假设我的 inFormat 不正确,无法格式化日期 unformattedDate

最佳答案

这样做

 String unformattedDate = "2013-11-16T08:46:00.000-06:00";
Date date = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss").parse(unformattedDate);
String formattedDate = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'").format(date);
System.out.println(formattedDate);

输出

2013-11-16T08:46:00.000Z

关于java - 日期字符串的正确日期格式,如 "2013-11-16T08:46:00.000-06:00",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20354724/

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