Java examples for java.time:Month
get First Date Of Current Month
//package com.java2s; import java.time.*; import java.time.temporal.TemporalAdjusters; import java.util.Date; public class Main { public static Date getFirstDateOfCurrentMonth() { return toDate(LocalDate.now().with( TemporalAdjusters.firstDayOfMonth())); }// ww w . j a v a 2 s . c o m public static Date toDate(LocalDate date) { Instant instant = date.atStartOfDay() .atZone(ZoneId.systemDefault()).toInstant(); return Date.from(instant); } public static Date toDate(LocalDateTime date) { Instant instant = date.atZone(ZoneId.systemDefault()).toInstant(); return Date.from(instant); } }