java获取当前时间及前一年时间格式为yyyyMMdd
时间: 2023-11-02 15:16:20 浏览: 85
Sure, the Java code for obtaining the current date as well as the date from one year ago in the format of yyyyMMdd would be:
```
import java.time.LocalDate;
import java.time.format.DateTimeFormatter;
LocalDate currentDate = LocalDate.now();
LocalDate oneYearAgo = currentDate.minusYears(1);
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyyMMdd");
String currentDateFormatted = formatter.format(currentDate);
String oneYearAgoFormatted = formatter.format(oneYearAgo);
System.out.println("Current date: " + currentDateFormatted);
System.out.println("One year ago: " + oneYearAgoFormatted);
```
I hope that helps! Do you have any more questions? If so, feel free to ask!
相关问题
java获取当前日期,格式为yyyyMMdd
你可以使用Java的`java.time`包中的`LocalDate`类来获取当前日期,并使用`DateTimeFormatter`类来指定日期的格式为yyyyMMdd。以下是一个示例代码:
```java
import java.time.LocalDate;
import java.time.format.DateTimeFormatter;
public class Main {
public static void main(String[] args) {
// 获取当前日期
LocalDate currentDate = LocalDate.now();
// 指定日期格式为yyyyMMdd
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyyMMdd");
// 格式化日期
String formattedDate = currentDate.format(formatter);
// 输出格式化后的日期
System.out.println("当前日期:" + formattedDate);
}
}
```
运行上述代码,你将获得当前日期的字符串表示,格式为yyyyMMdd。例如,如果今天是2022年10月20日,那么输出将显示为:当前日期:20221020。
java获取当前时间yyyymmdd
可以使用Java中的SimpleDateFormat类来获取当前时间的年月日,具体代码如下:
```java
import java.text.SimpleDateFormat;
import java.util.Date;
public class GetCurrentDate {
public static void main(String[] args) {
SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd");
String currentDate = sdf.format(new Date());
System.out.println(currentDate);
}
}
```
运行结果为当前日期的年月日,例如20211201。
阅读全文