利用Calendar类,示例代码如下:
public class Main {
public static void main(String[] args) {
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy年MM月dd日");
Date date = new Date();
System.out.println("当前时间是:" + dateFormat.format(date));
Calendar calendar = Calendar.getInstance();
calendar.setTime(date); // 设置为当前时间
calendar.set(Calendar.MONTH, calendar.get(Calendar.MONTH) - 1); // 设置为上一个月
date = calendar.getTime();
System.out.println("上一个月的时间: " + dateFormat.format(date));
}
}
输出结果: