I have a LocalDate which needs to get the first and last day of the month. How do I do that?
eg. 13/2/2014 I need to get 1/2/2014 and
13/2/2014
1/2/2014
LocalDate monthstart = LocalDate.of(year,month,1); LocalDate monthend = monthstart.plusDays(monthstart.lengthOfMonth()-1);