转换以纪元为单位的日期格式
我有一个带有日期格式的字符串,例如
Jun 13 2003 23:11:52.454 UTC
包含毫秒...我想在纪元中转换它。 Java 中是否有一个实用程序可以用来进行此转换?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我有一个带有日期格式的字符串,例如
Jun 13 2003 23:11:52.454 UTC
包含毫秒...我想在纪元中转换它。 Java 中是否有一个实用程序可以用来进行此转换?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(6)
您可以通过此链接获取区域ID !
you can get zone id form this a link!
创建将字符串转换为日期格式的通用方法
Create Common Method to Convert String to Date format
太长了;博士
java.time
此答案扩展了 Lockni 的答案。
DateTimeFormatter
首先通过创建
DateTimeFormatter
对象。ZonedDateTime
将字符串解析为
ZonedDateTime
。您可以将该类视为:(Instant
+ZoneId
)。Count-from-epoch
我不建议将日期时间值作为 count-from-纪元。这样做会使调试变得棘手,因为人类无法从数字中辨别出有意义的日期时间,因此无效/意外的值可能会溜走。而且,这样的计数在粒度(整秒、毫秒、微米、纳等)和纪元(各种计算机系统中至少有两打)上都是不明确的。
但如果您坚持,您可以通过
即时
班级。请注意,这意味着数据丢失,因为您将任何纳秒截断为毫秒。关于 java.time
java.time 框架内置于 Java 8 及更高版本中。这些类取代了麻烦的旧遗留日期时间类,例如
java.util.Date
,日历
, &SimpleDateFormat
。要了解更多信息,请参阅 Oracle 教程。并在 Stack Overflow 上搜索许多示例和解释。规范为 JSR 310。
Joda-Time 项目,现已在 维护模式,建议迁移到java.time< /a> 类。
您可以直接与数据库交换java.time对象。使用符合 JDBC 驱动程序 /jeps/170" rel="nofollow noreferrer">JDBC 4.2 或更高版本。不需要字符串,不需要 java.sql.* 类。 Hibernate 5 和 Hibernate 5 JPA 2.2 支持 java.time。
从哪里获取 java.time 类?
tl;dr
java.time
This Answer expands on the Answer by Lockni.
DateTimeFormatter
First define a formatting pattern to match your input string by creating a
DateTimeFormatter
object.ZonedDateTime
Parse the string as a
ZonedDateTime
. You can think of that class as: (Instant
+ZoneId
).Count-from-epoch
I do not recommend tracking date-time values as a count-from-epoch. Doing so makes debugging tricky as humans cannot discern a meaningful date-time from a number so invalid/unexpected values may slip by. Also such counts are ambiguous, in granularity (whole seconds, milli, micro, nano, etc.) and in epoch (at least two dozen in by various computer systems).
But if you insist you can get a count of milliseconds from the epoch of first moment of 1970 in UTC (
1970-01-01T00:00:00
) through theInstant
class. Be aware this means data-loss as you are truncating any nanoseconds to milliseconds.About java.time
The java.time framework is built into Java 8 and later. These classes supplant the troublesome old legacy date-time classes such as
java.util.Date
,Calendar
, &SimpleDateFormat
.To learn more, see the Oracle Tutorial. And search Stack Overflow for many examples and explanations. Specification is JSR 310.
The Joda-Time project, now in maintenance mode, advises migration to the java.time classes.
You may exchange java.time objects directly with your database. Use a JDBC driver compliant with JDBC 4.2 or later. No need for strings, no need for
java.sql.*
classes. Hibernate 5 & JPA 2.2 support java.time.Where to obtain the java.time classes?
不幸的是,
如果您在非英语
Locale
的系统上运行所有现有答案中提供的解决方案,它们将会失败,因为给定的日期时间字符串是英语。 切勿在没有区域设置
的情况下使用SimpleDateFormat
或DateTimeFormatter
< /a> 因为它们是区域设置
敏感的。接受的答案使用旧版日期时间 API,这是 2011 年使用标准库时的正确做法,当时问题是问道。 2014 年 3 月,
java.time
API 取代了 容易出错的旧版日期时间 API。从那时起,强烈建议使用这个现代日期时间 API。使用 java.time API 的演示:
输出:
从跟踪:日期时间。
Unfortunately,
the solution provided in all existing answers will fail if you run them on a system with Non-English
Locale
because the given date-time string is in an English. Never useSimpleDateFormat
orDateTimeFormatter
without aLocale
as they areLocale
-sensitive.The accepted answer uses legacy date-time API which was the correct thing to do using the standard library in 2011 when the question was asked. In March 2014,
java.time
API supplanted the error-prone legacy date-time API. Since then, it has been strongly recommended to use this modern date-time API.Demo using java.time API:
Output:
Learn more about the modern Date-Time API from Trail: Date Time.
您还可以使用 Java 8 API
DateTimeFormatter
类替换了旧的SimpleDateFormat
。然后,您可以创建一个ZonedDateTime
您可以从中提取所需的纪元时间。主要优点是您现在是线程安全的。
感谢 Basil Bourque 的评论和建议。阅读他的回答以获取完整详细信息。
You can also use the Java 8 API
The
DateTimeFormatter
class replaces the oldSimpleDateFormat
. You can then create aZonedDateTime
from which you can extract the desired epoch time.The main advantage is that you are now thread safe.
Thanks to Basil Bourque for his remarks and suggestions. Read his answer for full details.
此代码显示如何使用 java.text.SimpleDateFormat< /a> 解析 java.util.Date从一个字符串:
Date.getTime()
返回纪元时间(以毫秒为单位)。This code shows how to use a java.text.SimpleDateFormat to parse a java.util.Date from a String:
Date.getTime()
returns the epoch time in milliseconds.