将字符串转换为带时区的日期
我有一个格式为 yyyy-MM-dd hh:mm a 的字符串 我可以单独获取时区对象,其中上面的字符串代表日期。
我想将其转换为以下格式。 yyyy-MM-dd HH:mm:ss Z
我该怎么做?
I have a string in the pattern yyyy-MM-dd hh:mm a
and i can get the time zone object separately in which the above string represents the date.
I want to convert this to the below format.
yyyy-MM-dd HH:mm:ss Z
How can i do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
您可以将 SimpleDateFormat 与
yyyy 一起使用-MM-dd HH:mm:ss
并显式设置 时区:打印出:
2010-12-01 更新:
如果要显式打印特殊的时区,请在 SimpleDateFormat 中设置它:
打印
2010-11-17 13:12:00 +0530
You can use SimpleDateFormat with
yyyy-MM-dd HH:mm:ss
and explicitly set the TimeZone:Prints out:
Update 2010-12-01:
If you want to explicitly printout a special TimeZone, set it in the SimpleDateFormat:
Which prints
2010-11-17 13:12:00 +0530
tl;dr
避免遗留日期时间类
其他答案使用麻烦的旧日期时间类(
Date
、Calendar
等),现在是遗留的,被 java 取代.时间课程。本地日期时间
这样的输入字符串缺少任何与 UTC 或时区的偏移量指示。因此我们解析为
LocalDateTime
。定义格式模式以将您的输入与 <代码>DateTimeFormatter对象。
请注意,
LocalDateTime
不是一个特定时刻,只是关于一系列可能时刻的模糊想法。例如,法国巴黎午夜过后几分钟,加拿大蒙特利尔仍然是“昨天”。因此,如果没有时区的上下文,例如Europe/Paris
或America/Montreal
,只是说“几分钟午夜之后”没有任何意义。区域ID
时区由
ZoneId
类。
以
大陆/地区
格式指定正确的时区名称,例如America/Montreal
、非洲/卡萨布兰卡
,或太平洋/奥克兰
。切勿使用 3-4 个字母的缩写,例如EST
或IST
,因为它们不是真正的时区,不是标准化的,甚至不是唯一的( !)。ZonedDateTime
应用
ZoneId
来获取ZonedDateTime
这确实是时间线上的一个点,历史上的一个特定时刻。即时
首先,知道
Z
文字字符是Zulu
的缩写,表示 UTC。换句话说,offset-from-UTC 为零小时,+00:00
。即时
类表示 UTC 中时间轴上的时刻,分辨率为 纳秒(最多九 (9) 位小数)。您可以从
ZonedDateTime
中提取Instant
对象。要生成标准 ISO 8601 格式的字符串,例如
2017-01-22T18: 21:13.354Z
,调用toString
。标准格式没有空格,使用T
将年月日期与时分秒分开,并规范地附加Z
以获得零偏移量。我强烈建议尽可能使用标准格式。如果您坚持按照您指定的所需格式使用空格,请在
DateTimeFormatter
对象或仅对Instant::toString
。尝试一下IdeOne.com 上的实时代码。
关于 java.time
java.time 框架内置于 Java 8 及更高版本中。这些类取代了麻烦的旧遗留日期时间类,例如
java.util.Date
,日历
,&SimpleDateFormat
。Joda-Time 项目,现位于 维护模式,建议迁移到 java.time 类。
要了解更多信息,请参阅 Oracle 教程。并在 Stack Overflow 上搜索许多示例和解释。规范为 JSR 310。
从哪里获取 java.time 类?
ThreeTen-Extra 项目通过附加类扩展了 java.time。该项目是 java.time 未来可能添加的内容的试验场。您可能会在这里找到一些有用的类,例如
Interval
,YearWeek
,YearQuarter
,以及更多。tl;dr
Avoid legacy date-time classes
The other Answers use the troublesome old date-time classes (
Date
,Calendar
, etc.), now legacy, supplanted by the java.time classes.LocalDateTime
Such an input string lacks any indication of offset-from-UTC or time zone. So we parse as a
LocalDateTime
.Define a formatting pattern to match your input with a
DateTimeFormatter
object.Note that a
LocalDateTime
is not a specific moment, only a vague idea about a range of possible moments. For example, a few minutes after midnight in Paris France is still “yesterday” in Montréal Canada. So without the context of a time zone such asEurope/Paris
orAmerica/Montreal
, just saying “a few minutes after midnight” has no meaning.ZoneId
A time zone is represented by the
ZoneId
class.Specify a proper time zone name in the format of
continent/region
, such asAmerica/Montreal
,Africa/Casablanca
, orPacific/Auckland
. Never use the 3-4 letter abbreviation such asEST
orIST
as they are not true time zones, not standardized, and not even unique(!).ZonedDateTime
Apply the
ZoneId
to get aZonedDateTime
which is indeed a point on the timeline, a specific moment in history.Instant
First, know that a
Z
literal character is short forZulu
and means UTC. In other words, an offset-from-UTC of zero hours,+00:00
.The
Instant
class represents a moment on the timeline in UTC with a resolution of nanoseconds (up to nine (9) digits of a decimal fraction).You can extract a
Instant
object from aZonedDateTime
.To generate a string in standard ISO 8601 format, such as
2017-01-22T18:21:13.354Z
, calltoString
. The standard format has no spaces, uses aT
to separate the year-month-date from the hour-minute-second, and appends theZ
canonically for an offset of zero.I strongly suggest using the standard formats whenever possible. If you insist on using spaces as in your stated desired format, either define your own formatting pattern in a
DateTimeFormatter
object or just do a string manipulation on the output ofInstant::toString
.Try this code live at IdeOne.com.
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
.The Joda-Time project, now in maintenance mode, advises migration to the java.time classes.
To learn more, see the Oracle Tutorial. And search Stack Overflow for many examples and explanations. Specification is JSR 310.
Where to obtain the java.time classes?
The ThreeTen-Extra project extends java.time with additional classes. This project is a proving ground for possible future additions to java.time. You may find some useful classes here such as
Interval
,YearWeek
,YearQuarter
, and more.使用 SimpleDateFormat
Use SimpleDateFormat
毫无疑问,通常使用的格式将是
2014-10-05T15:23:01Z
(TZ) 的形式,因此必须使用此代码,
其输出将为 Sun Oct 05 20:53 :01 IST 2014
但是,我不确定为什么我们必须替换All“Z”,如果不添加replaceAll,程序将会失败。
Undoubtedly, the format which is generally used will be of a form
2014-10-05T15:23:01Z
(TZ)For that one has to use this code
Its output will be Sun Oct 05 20:53:01 IST 2014
However, I am not sure why we had to replaceAll "Z" if you do not add replaceAll the program will fail.
使用您的日期创建 SimpleDateFormat 的新实例图案。之后,您可以调用它的 parse 方法将日期字符串转换为 java.util.Date 对象。
Create a new instance of SimpleDateFormat using your date pattern. Afterwards you can call it's parse method to convert date strings to a java.util.Date object.
请尝试使用“yyyy-MM-dd HH:mm:ss Z”格式,
例如:“2020-12-11 22:59:59 GMT”,您可以使用不同的时区,如 PST、GMT 等。
Please try this for the format "yyyy-MM-dd HH:mm:ss Z",
Eg: "2020-12-11 22:59:59 GMT", you can use different time zones like PST, GMT, etc.