今日の日付の7日前に日付を取得しようとしています。 SimpleDateFormatを使用して今日の日付を取得しています。現在のアンドロイドの過去7日間の日付を取得します
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);
は、あなたが返信いただきありがとうございます、私が最も有用であることが判明、この
更新答えて私を導いてください
は親切に答えを受け入れますあなたの解決策があれば) –