問題:
使用🎜>
使用🎜>問題:
問題:使用🎜>
問題:SimpleDateFormat dtfmt = new SimpleDateFormat("dd MMM yyyy hh:mm a", Locale.ENGLISH);
import java.time.LocalDateTime; import java.time.format.DateTimeFormatter; import java.util.Locale; public class Main { public static void main(String[] args) { String strDateTime = "24 Oct 2016 7:31 pm"; DateTimeFormatter dtf = DateTimeFormatter.ofPattern("d MMM uuuu h:m a").withLocale(Locale.ENGLISH); LocalDateTime ldt = LocalDateTime.parse(strDateTime, dtf); System.out.println(ldt); // prints 2016-10-24T19:31 } }
使用現代DateTimeFormatter API:
以上是為什麼 SimpleDateFormat 會拋出「無法解析的日期」?的詳細內容。更多資訊請關注PHP中文網其他相關文章!