I get a date and want to check if it is the next sunday.I found alot of code with Calendar etc, but I can't find the right code. And I don't really understand how I can know if it is the next sunday from a date.
Thanks for you help
|
|
|
Break the problem down:
|
|||||||||
|
|
First of, I recommend Joda Time as a much better Date/Time API than As for your processing it breaks down into easy steps:
|
|||
|
|
|
If you look for nice Date management, check this out Joda Time |
|||
|
this might be helpful to you , you can chek by dayOfWeek == Calendar.SUNDAY after adding one day |
|||
|
|