ローカル日付 (JODA TIME) API から週の日付のみを取得する方法を探していますか? この形式でコードを記述しようとしています..
LocalDate today = new LocalDate();
LocalDate getDate = new LocalDate(sqlDate);// i will recieve sqldate from sql table
//if the getdate and number of days to remind is equals to today
//and if it is between monday to friday ,send an email.
//ReminderDays is an integer
if(getDate+ReminderDays == today)
SendMail();
可能であれば、コードを提供してください? ありがとうございました。