從yyyy-mm-dd 到mm-dd-yyyy 的日期格式轉換
從yyyy- 轉換java. -dd 格式轉換為mm-dd-yyyy 需要使用日期格式化程序。 SimpleDateFormat 類別提供了一個方便的方法來格式化和解析日期物件。
但是,需要注意的是,Date 本身是自 Unix 紀元以來的毫秒容器,沒有任何固有格式。格式僅影響日期的字串表示形式。
使用SimpleDateFormat(Java 7 及更高版本)
以下範例示範如何使用SimpleDateFormat 轉換日期:
<code class="java">Date myDate = new Date(); SimpleDateFormat yyyymmddFormat = new SimpleDateFormat("yyyy-MM-dd"); // Input format SimpleDateFormat mmddyyyyFormat = new SimpleDateFormat("MM-dd-yyyy"); // Output format // Format the date to the desired format String formattedDate = mmddyyyyFormat.format(myDate);</code>
<code class="java">LocalDateTime ldt = LocalDateTime.now(); String formattedDate = DateTimeFormatter.ofPattern("MM-dd-yyyy", Locale.ENGLISH).format(ldt);</code>
附加說明:
以上是如何將 Java 日期從 yyyy-mm-dd 轉換為 mm-dd-yyyy?的詳細內容。更多資訊請關注PHP中文網其他相關文章!