当前位置:   article > 正文

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

当前日期 java
用java.time包中的类LocalDate,LocalDateTime, DateTimeFormatter

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

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

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/631295
推荐阅读
相关标签
  

闽ICP备14008679号