java获取当天日期(年月日、年月日时分秒)

时间:2025-04-04 07:13:29
用包中的类LocalDate,LocalDateTime, DateTimeFormatter

获取当前日期(年月日)  
LocalDate currentDate = ();  //返回当前日期
("当前日期(年月日): " + currentDate);  
例:'2000-01-01'
// 获取当前日期时间(年月日时分秒)  
LocalDateTime currentDateTime = ();  //返回当前时间
("当前日期时间(年月日时分秒): " + currentDateTime);  
例:'2024-03-18T11:46:59.646110'

// 格式化日期和时间 
//DateTimeFormatter定义日期和时间的格式 
DateTimeFormatter dateFormatter = ("yyyy-MM-dd"); 
DateTimeFormatter dateTimeFormatter = ("yyyy-MM-dd HH:mm:ss");  
  
//format将日期和时间对象转换为字符串格式
String formattedDate = (dateFormatter);  
String formattedDateTime = (dateTimeFormatter);  
  
("格式化后的当前日期(年月日): " + formattedDate);  
例:'2000-01-01'
("格式化后的当前日期时间(年月日时分秒): " + formattedDateTime);
例:'2000-01-01 00:00:00'