get First Date Of Last Month - Java java.time

Java examples for java.time:Month

Description

get First Date Of Last Month

Demo Code


//package com.java2s;
import java.time.*;

import java.time.temporal.TemporalAdjusters;
import java.util.Date;

public class Main {
    public static Date getFirstDateOfLastMonth() {
        return toDate(LocalDate.now().minusMonths(1)
                .with(TemporalAdjusters.firstDayOfYear()));
    }//from w  ww  . j a  v  a  2  s.co 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