Java程式碼實現帶時區時間字串轉為LocalDateTime物件

木头左發表於2024-04-05

不帶時區時間字串

可以使用Java 8中的DateTimeFormatter類來將字串轉換為LocalDateTime物件。下面是一個示例程式碼:

import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;

public class DateTimeConversionExample {
    public static void main(String[] args) {
        String timeString = "2023-05-18T10:59:40";
        DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd'T'HH:mm:ss");
        LocalDateTime dateTime = LocalDateTime.parse(timeString, formatter);
        System.out.println(dateTime);
    }
}

在上面的程式碼中,我們首先定義了一個時間字串,然後建立了一個DateTimeFormatter物件,該物件定義了時間字串的格式。接下來,我們使用parse方法將時間字串轉換為LocalDateTime物件,並將其列印到控制檯上。

請注意,DateTimeFormatter物件中的時間格式必須與時間字串的格式完全匹配,否則將會丟擲DateTimeParseException異常。

帶時區時間字串

如果要實現帶時區時間字串轉為LocalDateTime物件:

import java.time.LocalDateTime;
import java.time.OffsetDateTime;
import java.time.format.DateTimeFormatter;

public class TimeZoneDateTimeConverter {
    
    public static void main(String[] args) {
        String dateTimeStr = "2023-04-20T20:15:10.000+08:00";
        LocalDateTime localDateTime = convertTimeZoneStringToLocalDateTime(dateTimeStr);
        System.out.println(localDateTime);
    }

    public static LocalDateTime convertTimeZoneStringToLocalDateTime(String timeZoneDateTimeStr) {
        DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd'T'HH:mm:ss.SSSXXX");
        OffsetDateTime offsetDateTime = OffsetDateTime.parse(timeZoneDateTimeStr, formatter);
        return offsetDateTime.toLocalDateTime();
    }
}

這裡我們使用了OffsetDateTime類,它可以認識和處理帶時區的時間。我們同時定義了一個日期格式化物件,以確保我們可以解析時區時間字串,這個格式化物件需要的格式是:"yyyy-MM-dd'T'HH:mm:ss.SSSXXX"

使用本程式碼示例的Java版本需要在8及以上。

相關文章