特定の日付に日を追加するために、私はこのように試しました
calendar.setTime(currentDate);
calendar.add(Calendar.DAY_OF_YEAR, 7);
Date nextWeek = calendar.getTime();
System.out.format("next week: %s\n", nextWeek);
しかし、私はこれを使用してアプリのインストール日を取得しています
PackageManager pm = getApplicationContext().getPackageManager();
ApplicationInfo appInfo = pm.getApplicationInfo(
"com.mothistorycheck.functions", 0);
String appFile = appInfo.sourceDir;
long installed = new File(appFile).lastModified();
Date date = new Date(installed * 1000L);
Date currentDate = Calendar.getInstance().getTime();
このインストール日から1年先の日付を取得したいのですが、取得方法を教えてください。