文字列形式の日付を現在の日付と比較しようとしています。これは私が行った方法です(テストしていませんが、機能するはずです)が、非推奨の方法を使用しています。代替案の良い提案はありますか? ありがとう。
PS私はJavaでDateのことをするのが本当に嫌いです。同じことを行うには非常に多くの方法があるため、どれが正しいのか本当にわからないため、ここで私の質問です。
String valid_until = "1/1/1990";
Calendar cal = Calendar.getInstance();
SimpleDateFormat sdf = new SimpleDateFormat("dd/mm/yyyy");
Date strDate = sdf.parse(valid_until);
int year = strDate.getYear(); // this is deprecated
int month = strDate.getMonth() // this is deprecated
int day = strDate.getDay(); // this is deprecated
Calendar validDate = Calendar.getInstance();
validDate.set(year, month, day);
Calendar currentDate = Calendar.getInstance();
if (currentDate.after(validDate)) {
catalog_outdated = 1;
}