将字符串转换为Instant

时间:2018-05-11 20:15:04

标签: java date timezone zoneddatetime java.time.instant

我正在尝试使用java 8或utils包将string中的datetime转换为即时。

例如。

String requestTime = "04:30 PM, Sat 5/12/2018";

Instant reqInstant should result in 2018-05-12T20:30:00.000Z

reqString位于美国/多伦多时区。

这就是我试过的

 String strReqDelTime = "04:30 PM, Sat 5/12/2018";
 Date date = new SimpleDateFormat("hh:mm a, EEE MM/dd/yyyy").parse(requestTime);
 Instant reqInstant = date.toInstant();

以上代码会产生"2018-05-12T23:30:00Z"

感谢任何帮助。

2 个答案:

答案 0 :(得分:18)

TL;博士

  • 修复未填充月份和格式的格式模式一天。
  • 仅使用 java.time 类,而不是遗留类。

受挫的例子:

LocalDateTime.parse(                   // Parse as an indeterminate `LocalDate`, devoid of time zone or offset-from-UTC. NOT a moment, NOT a point on the timeline.
    "04:30 PM, Sat 5/12/2018" ,        // This input uses a poor choice of format. Whenever possible, use standard ISO 8601 formats when exchanging date-time values as text. Conveniently, the java.time classes use the standard formats by default when parsing/generating strings.
    DateTimeFormatter.ofPattern( "hh:mm a, EEE M/d/uuuu" , Locale.US )  // Use single-character `M` & `d` when the number lacks a leading padded zero for single-digit values.
)                                      // Returns a `LocalDateTime` object.
.atZone(                               // Apply a zone to that unzoned `LocalDateTime`, giving it meaning, determining a point on the timeline.
    ZoneId.of( "America/Toronto" )     // Always specify a proper time zone with `Contintent/Region` format, never a 3-4 letter pseudo-zone such as `PST`, `CST`, or `IST`. 
)                                      // Returns a `ZonedDateTime`. `toString` → 2018-05-12T16:30-04:00[America/Toronto].
.toInstant()                           // Extract a `Instant` object, always in UTC by definition.
.toString()                            // Generate a String in standard ISO 8601 format representing the value within this `Instant` object. Note that this string is *generated*, not *contained*.
  

2018-05-12T20:30:00Z

使用单位数字格式

您在格式设置模式中使用MM表示任何单位数值(1月至9月)将显示填充前导零。

但是你的输入缺少填充前导零。因此,请使用一个M

我希望天数相同:d而不是dd

仅使用 java.time

您正在使用多年前由 java.time 类取代的麻烦的旧日期时间类(Date& SimpleDateFormat)。新课程完全取代旧课程。无需混合传统和现代。

LocalDateTime

解析为LocalDateTime,因为您的输入字符串缺少time zoneoffset-from-UTC的任何指标。这样的值片刻,时间轴上的一个点。在大约26-27小时的范围内,它只是一组潜在的时刻。

String input = "04:30 PM, Sat 5/12/2018";
DateTimeFormatter f = DateTimeFormatter.ofPattern( "hh:mm a, EEE M/d/uuuu" , Locale.US );  // Specify locale to determine human language and cultural norms used in translating that input string.
LocalDateTime ldt = LocalDateTime.parse( input , f );
  

ldt.toString():2018-05-12T16:30

ZonedDateTime

如果您确定输入的目的是使用多伦多加拿大地区人员使用的挂钟时间来表示时刻,请应用ZoneId来获取ZonedDateTime对象。< / p>

分配时区为您的未分区LocalDateTime提供了意义。现在我们有一个时刻,时间轴上的一点。

ZoneId z = ZoneId.of( "America/Toronto" ) ;
ZonedDateTime zdt = ldt.atZone( z ) ;  // Give meaning to that `LocalDateTime` by assigning the context of a particular time zone. Now we have a moment, a point on the timeline.
  

zdt.toString():2018-05-12T16:30-04:00 [America / Toronto]

Instant

要查看与UTC相同的时刻,请提取Instant。同一时刻,不同的挂钟时间。

Instant instant = zdt.toInstant() ;
  

instant.toString():2018-05-12T20:30:00Z

关于 java.time

java.time框架内置于Java 8及更高版本中。这些类取代了麻烦的旧legacy日期时间类,例如java.util.DateCalendar和&amp; SimpleDateFormat

现在位于Joda-Timemaintenance mode项目建议迁移到java.time类。

要了解详情,请参阅Oracle Tutorial。并搜索Stack Overflow以获取许多示例和解释。规范是JSR 310

您可以直接与数据库交换 java.time 对象。使用符合JDBC driver或更高版本的JDBC 4.2。不需要字符串,不需要java.sql.*类。

从哪里获取java.time类?

ThreeTen-Extra项目使用其他类扩展java.time。该项目是未来可能添加到java.time的试验场。您可以在此处找到一些有用的课程,例如IntervalYearWeekYearQuartermore

答案 1 :(得分:0)

您的计算机(服务器)中的时区似乎是美国太平洋夏令时(GMT-7),但您希望美国东部夏令时(GMT-4)有结果。

Instant.toString()以ISO-8601格式返回UTC(GMT + 0)DateTime。 (&#39; Z&#39;最后表示UTC)。

SimpleDateFormat威胁DateTime字符串在未指定计算机的默认时区中。并且您的输入未指定时区。

所以,你需要在输入的时区做些什么。

PS。在DST东部的矿山机器上,您的代码完全按照您的预期给我结果。