You find the datum of today using
[code]
| java.time.LocalDate today = LocalDate.now(); System.out.println ("Today=" + today); |
[/code]
This will result in
[code]today=2015-07-24[/code]
Today is a Friday, the fifth day of this week.
How do I get the date of this weeks monday (eg. 2015-07-19)