Android 中的 ISO 8601 字符串到日期/时间对象
我有一个标准 ISO 8601 格式的字符串,其中包含从 Web 服务返回的日期/时间,例如so:
String dtStart = "2010-10-15T09:27:37Z"
如何将其放入时间或日期等对象中?我最初想以不同的格式输出它,但稍后需要用它做其他事情(即可能以不同的格式使用)。
干杯
I have a string in standard ISO 8601 format that contains the date/time returned from a web service like so:
String dtStart = "2010-10-15T09:27:37Z"
How do I get this into an object such as Time or Date? I initially want to output it in a different format, but will need to do other stuff with it later (i.e. maybe use in a different format).
Cheers
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这就是您正在寻找的。有关于此问题的现有帖子。
This is what you are looking for. There is existing post about this problem.
这个问题是在 2010 年提出的,当时您应该使用
SimpleDateFormat
或 Joda-Time 工具,这是正确的。现在已经是很久以前的事了。今天使用的是的,就是这么简单。您的字符串采用 ISO 8601 格式,并且现代 Java 日期和时间 API
java.time
中的类无需任何显式格式化程序即可解析 ISO 8601。Instant
只是这些类之一。编辑:问题:需要 android API 26 - 支持旧版本怎么样?
是的,
java.time
在旧版和新版 Android 设备上都能很好地工作。它只需要至少 Java 6。链接
java.time< /代码>。
java.time< /code> 首次被描述。
java.time
向后移植到 Java 6 和7(JSR-310 为 ThreeTen)。This question was asked in 2010, and back then it was correct that either
SimpleDateFormat
or Joda-Time would be the tools you should use. It’s quite a while ago now. Today useYes, it’s this simple. Your string is in ISO 8601 format, and the classes from
java.time
, the modern Java date and time API, parse ISO 8601 without any explicit formatter.Instant
is just one of those classes.Edit: Question: requires android API 26 - what about supporting older versions?
Yes,
java.time
works nicely on older and newer Android devices. It just requires at least Java 6.org.threeten.bp
with subpackages.Links
java.time
.java.time
was first described.java.time
to Java 6 and 7 (ThreeTen for JSR-310).您可以使用 Java的SimpleDateFormat解析方法或者使用JodaTime 的 DateTimeFormat 创建 DateTimeFormatter 和 相应地解析为 DateTime 对象
You can use Java's SimpleDateFormat parse method or use JodaTime's DateTimeFormat to create a DateTimeFormatter and parse to a DateTime object accordingly
如果您使用当前的
java.time
或Threetenbp
,只需像这样解析它:现在您可以访问日期和时间值,例如年,月,小时等。
If you use current
java.time
orthreetenbp
simply parse it like this:Now you can access date and time values such as year, month, hour, etc.