get First Date Of Current Month - Java java.time

Java examples for java.time:Month

Description

get First Date Of Current Month

Demo Code


//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);
    }
}

Related Tutorials