用java写一个获取当前时间三十天之后的程序,格式化成年月日的格式打印出来
时间: 2023-12-01 21:02:50 浏览: 64
好的,以下是用Java写一个获取当前时间三十天之后的程序:
```
import java.time.LocalDate;
import java.time.format.DateTimeFormatter;
public class Main {
public static void main(String[] args) {
LocalDate currentDate = LocalDate.now();
LocalDate thirtyDaysLater = currentDate.plusDays(30);
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy年MM月dd日");
String formattedDate = thirtyDaysLater.format(formatter);
System.out.println("当前时间三十天之后的日期是:" + formattedDate);
}
}
```
程序将获取当前时间并添加30天,然后使用DateTimeFormatter将日期格式化为“年月日”的格式,并打印出来。希望这个程序对你有用!
阅读全文