Java 函式庫提供了多種日期格式化工具:SimpleDateFormat:可使用模式字串格式化和解析日期。 (例如:yyyy-MM-dd)DateTimeFormatter:java.time API 中提供的更全面的格式化工具,透過模式字串建立。 (例如:yyyy-MM-dd)Joda-Time:Apache 社群的日期和時間庫,提供更進階的功能。 (例如:時區處理,日期範圍操作)
Java 函數庫中的常用日期格式化工具
java.time
是Java 8 中引入的日期和時間API,為日期和時間處理提供了豐富的功能,其中包括多個常用的日期格式化工具。
SimpleDateFormat:
SimpleDateFormat
類別提供了對日期和時間進行格式化和解析的方式。它使用一個模式字串來定義所需的格式,如 yyyy-MM-dd
。
import java.text.SimpleDateFormat; import java.util.Date; public class SimpleDateFormatExample { public static void main(String[] args) { Date date = new Date(); // 使用模式字符串进行格式化 SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); String formattedDate = sdf.format(date); System.out.println("格式化后的日期:" + formattedDate); // 使用解析字符串进行解析 SimpleDateFormat sdfParse = new SimpleDateFormat("yyyy-MM-dd"); Date parsedDate = sdfParse.parse(formattedDate); System.out.println("解析后的日期:" + parsedDate); } }
DateTimeFormatter:
DateTimeFormatter
類別是java.time
API 中引入的,它提供了更全面和可配置的日期格式化功能。透過 ofPattern
方法指定模式字串來建立 DateTimeFormatter
實例。
import java.time.LocalDate; import java.time.format.DateTimeFormatter; public class DateTimeFormatterExample { public static void main(String[] args) { LocalDate date = LocalDate.now(); // 使用模式字符串创建 DateTimeFormatter DateTimeFormatter dtf = DateTimeFormatter.ofPattern("yyyy-MM-dd"); // 格式化日期 String formattedDate = dtf.format(date); System.out.println("格式化后的日期:" + formattedDate); // 解析日期 LocalDate parsedDate = LocalDate.parse(formattedDate, dtf); System.out.println("解析后的日期:" + parsedDate); } }
Joda-Time:
Joda-Time 是 Apache 社群開發的一個廣泛使用的日期和時間 API。它提供了 java.time
API 沒有的額外功能,例如時區處理和日期範圍操作。
import org.joda.time.DateTime; import org.joda.time.format.DateTimeFormat; import org.joda.time.format.DateTimeFormatter; public class JodaTimeExample { public static void main(String[] args) { DateTime dateTime = new DateTime(); // 使用模式字符串创建 DateTimeFormatter DateTimeFormatter dtf = DateTimeFormat.forPattern("yyyy-MM-dd HH:mm:ss"); // 格式化日期 String formattedDate = dtf.print(dateTime); System.out.println("格式化后的日期:" + formattedDate); // 解析日期 DateTime parsedDateTime = dtf.parseDateTime(formattedDate); System.out.println("解析后的日期:" + parsedDateTime); } }
以上是Java 函式庫中都有哪些常用日期格式化工具?的詳細內容。更多資訊請關注PHP中文網其他相關文章!