我正在尝试获取今天日期前 7 天的日期。我正在使用 SimpleDateFormat 来获取今天的日期。
SimpleDateFormat sdf1 = new SimpleDateFormat("dd/MM/yyyy");
请指导我完成这个
更新了我认为最有用的答案
SimpleDateFormat sdf=new SimpleDateFormat("dd/MM/yyyy");
String currentDateandTime = sdf.format(new Date());
Date cdate=sdf.parse(currentDateandTime);
Calendar now2= Calendar.getInstance();
now2.add(Calendar.DATE, -7);
String beforedate=now2.get(Calendar.DATE)+"/"+(now2.get(Calendar.MONTH) + 1)+"/"+now2.get(Calendar.YEAR);
Date BeforeDate1=sdf.parse(beforedate);
cdate.compareTo(BeforeDate1);
谢谢你的回复