当日期值包含 « 时,GWT DateTimeFormat 抛出 IllegalArgumentException Z »

发布于 2024-10-16 13:35:16 字数 338 浏览 7 评论 0原文

即使格式设置良好,解析包含“Z”(时区指示符)的日期也会失败。有什么问题吗?

下面的代码抛出一个 IllegalArgumentException:

DateTimeFormat
.getFormat("yyyy-MM-dd'T'HH:mm:ss.SSSZ")
.parse("2010-12-06T10:26:52.011Z");

这个有效:

DateTimeFormat
.getFormat("yyyy-MM-dd'T'HH:mm:ss.SSSZ")
.parse("2010-12-06T10:26:52.011");

Parsing a date containing « Z » — timezone indicator — fails, even if the format is well seted. What's the problem?

The following code throws an IllegalArgumentException:

DateTimeFormat
.getFormat("yyyy-MM-dd'T'HH:mm:ss.SSSZ")
.parse("2010-12-06T10:26:52.011Z");

This one works:

DateTimeFormat
.getFormat("yyyy-MM-dd'T'HH:mm:ss.SSSZ")
.parse("2010-12-06T10:26:52.011");

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

妳是的陽光 2024-10-23 13:35:16

GWT 无法将“Z”(祖鲁时区)理解为 GMT。如果将第一个示例中的尾随 Z 更改为 GMT,则效果很好。

if (s.endsWith("Z")) {
  //  strip off the last 'Z' and replace with GMT timezone information
  s = StringUtils.chop(s) + "GMT-00:00";
}

GWT doesn't understand 'Z' (for Zulu TimeZone) as GMT. If you change the trailing Z in your first example to GMT it works fine.

if (s.endsWith("Z")) {
  //  strip off the last 'Z' and replace with GMT timezone information
  s = StringUtils.chop(s) + "GMT-00:00";
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文