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
With the date4j library :
dt.getStartOfMonth(); dt.getEndOfMonth();