我使用以下函数将微秒格式的时间字符串转换为ZoneDateTime
,以便稍后进行比较。
public static ZonedDateTime createTimeFromString(String inputTime) {
ZonedDateTime time;
try {
System.out.printf("Input time %s%n", inputTime);
DateTimeFormatter formatter =
DateTimeFormatter.ofPattern("yyyyMMdd-HH:mm:ss.SSSSSS");
LocalDate date = LocalDate.parse(inputTime, formatter);
time = date.atStartOfDay(ZoneId.systemDefault());
System.out.printf("Formated time %s%n", time);
return time;
}
catch (DateTimeParseException exc) {
System.out.printf("%s is not parsable!%n", inputTime);
throw exc; // Rethrow the exception.
}
}
但是,无论何时将字符串传递给函数,我都会获得相同的输出。
例如:
Input time 20171025-10:58:24.062151
Formated time 2017-10-25T00:00+05:30[Asia/Colombo]
Input time 20171025-10:58:25.446862
Formated time 2017-10-25T00:00+05:30[Asia/Colombo]
我正在使用Java 8.
你能否澄清一下我做错了什么?
答案 0 :(得分:4)
当你致电LocalDate.parse
时,你只得到日期部分(日,月和年)并丢弃其余部分。 LocalDate
没有时间字段(小时,分钟,秒和秒的分数),因此它们被丢弃并丢失。
然后拨打atStartOfDay(ZoneId.systemDefault())
,将时间设置为JVM默认时区的午夜。
如果要保留所有内容(日期和时间),请将其解析为LocalDateTime
,这是一个包含所有日期和时间字段的类。然后,您调用atZone
方法将其转换为ZonedDateTime
:
String inputTime = "20171025-10:58:24.062151";
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyyMMdd-HH:mm:ss.SSSSSS");
// parse to a LocalDateTime (keeping all date and time fields)
LocalDateTime date = LocalDateTime.parse(inputTime, formatter);
// convert to ZonedDateTime
ZonedDateTime z = date.atZone(ZoneId.systemDefault());
PS: ZoneId.systemDefault()
会返回JVM默认时区,但要记住这个can be changed without notice, even at runtime,因此最好始终明确指出您正在使用的时区。
API使用IANA timezones names(始终采用Region/City
格式,如Asia/Colombo
或Europe/Berlin
。
避免使用3个字母的缩写(例如IST
或CET
),因为它们是ambiguous and not standard。
您可以致电ZoneId.getAvailableZoneIds()
获取可用时区列表(并选择最适合您系统的时区)。然后使用区域名称调用ZoneId.of()
方法,如下所示:
// using specific timezone instead of JVM's default
ZonedDateTime z = date.atZone(ZoneId.of("Asia/Colombo"));