要獲取指定格式的日期,可以使用java.time包中的DateTimeFormatter類。下面是一個示例代碼,演示如何獲取指定格式的日期:
import java.time.LocalDate;
import java.time.format.DateTimeFormatter;
public class Main {
public static void main(String[] args) {
// 獲取當前日期
LocalDate currentDate = LocalDate.now();
// 創建一個日期格式化器,指定要獲取的日期格式
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd");
// 使用日期格式化器將日期轉換為指定格式的字符串
String formattedDate = currentDate.format(formatter);
// 輸出結果
System.out.println("Formatted Date: " + formattedDate);
}
}
在上面的代碼中,我們首先獲取當前日期LocalDate.now()
,然后創建一個日期格式化器DateTimeFormatter
,并使用ofPattern
方法指定要獲取的日期格式。最后,使用format
方法將日期轉換為指定格式的字符串。輸出結果將顯示格式化后的日期。
在這個示例中,我們將日期格式指定為"yyyy-MM-dd",你可以根據需要修改日期格式。