一般解析字符串到日期

发布于 2024-12-07 08:02:29 字数 67 浏览 0 评论 0原文

我正在与 Web 服务通信,并且 json 响应中包含日期。问题是这些日期的格式不同。有没有通用的方法来解析这些字符串?

I'm communication with a web service and it the json response has dates in it. the problem is those dates are in different formats. is there a generic way to parse these strings?

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

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

发布评论

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

评论(1

负佳期 2024-12-14 08:02:29

您可能应该有一个有序的格式列表来尝试(理想情况下使用 Joda Time 作为比内置的)并依次尝试每一个,直到其中一个起作用。它在性能方面并不理想(所有失败的例外情况),但它会起作用并且应该相当清晰。

当然,如果您可以联系网络服务提供商并建议他们返回标准格式,那就更干净了......

You should probably have an ordered list of formats to try (ideally using Joda Time as a far better API than the built-in one) and try each in turn until one works. It's not ideal in terms of performance (all the exceptions for failure) but it'll work and should be reasonably clear.

Of course, if you can get in touch with the web service provider and suggest that they return a standard format instead, that would be cleaner...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文