要將SimpleDateFormat轉換為LocalDateTime,可以使用以下方法:
import java.text.SimpleDateFormat;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
public class Main {
public static void main(String[] args) {
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String dateStr = "2022-09-30 12:00:00";
try {
LocalDateTime localDateTime = LocalDateTime.parse(dateStr, DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"));
System.out.println("Converted LocalDateTime: " + localDateTime);
} catch (Exception e) {
e.printStackTrace();
}
}
}
在這個示例中,我們首先創建了一個SimpleDateFormat對象,并用一個日期字符串初始化它。然后,我們使用DateTimeFormatter將日期字符串轉換為LocalDateTime對象。最后,我們打印出轉換后的LocalDateTime。