MonthDay now(ZoneId) method in Java with Examples

Last Updated : 12 May, 2020
The now(ZoneId zone) method of the MonthDay class in Java is used to get the current month-day from the system clock in the specified time-zone. Syntax:
public static MonthDay now(ZoneId zone)
Parameters: This method accepts ZoneId as parameter. Return value: This method returns the current month-day using the system clock. Below programs illustrate the now(ZoneId zone) method of MonthDay in Java: Program 1: Java
// Java program to demonstrate
// MonthDay.now(ZoneId zone) method

import java.time.*;
import java.time.temporal.*;

public class GFG {
    public static void main(String[] args)
    {

        // apply now(ZoneId zone) method
        // of MonthDay class
        MonthDay result = MonthDay.now(
            ZoneId.systemDefault());

        // print both month and day
        System.out.println("MonthDay: "
                           + result);
    }
}
Output:
MonthDay: --05-09
Program 2: Java
// Java program to demonstrate
// MonthDay.now(ZoneId zone) method

import java.time.*;
import java.time.temporal.*;

public class GFG {
    public static void main(String[] args)
    {

        // apply now(ZoneId zone) method
        // of MonthDay class
        MonthDay result = MonthDay.now(
            ZoneId.systemDefault());

        // print only month
        System.out.println("Month: "
                           + result.getMonth());
    }
}
Comment