I need the start date and the end date of the current month in Java. When the JSP page is loaded with the current month it should automatically calculate the start and end d
If you have the option, you'd better avoid the horrid Java Date API, and use instead Jodatime. Here is an example:
LocalDate monthBegin = new LocalDate().withDayOfMonth(1); LocalDate monthEnd = new LocalDate().plusMonths(1).withDayOfMonth(1).minusDays(1);