Thursday, June 11, 2026
HomeLanguagesJavaYearMonth now(zone) in Java with Examples

YearMonth now(zone) in Java with Examples

now(ZoneId zone) method of the YearMonth class in Java is used to obtain the current year-month from the system clock in the specified time-zone.
Syntax:

public static YearMonth now(ZoneId zone)

Parameters: This method accepts monthsToAdd as parameters which represents the zone ID to use.

Return value: This method returns the current year-month using the system clock.

Below programs illustrate the now(ZoneId zone) method of YearMonth in Java:

Program 1:




// Java program to demonstrate
// YearMonth.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 YearMonth class
        YearMonth result
            = YearMonth.now(
                ZoneId.systemDefault());
  
        // print both year and month
        System.out.println("YearMonth: "
                           + result);
    }
}


Output:

YearMonth: 2020-05

Program 2:




// Java program to demonstrate
// YearMonth.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 YearMonth class
        YearMonth result
            = YearMonth.now(
                ZoneId.systemDefault());
  
        // print only year
        System.out.println(
            "Year: "
            + result.get(
                  ChronoField.YEAR));
    }
}


Output:

Year: 2020

Program 3:




// Java program to demonstrate
// YearMonth.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 YearMonth class
        YearMonth result
            = YearMonth.now(
                ZoneId.systemDefault());
  
        // print only month
        System.out.println(
            "Month: "
            + result.get(
                  ChronoField.MONTH_OF_YEAR));
    }
}


Output:

Month: 5

References: https://docs.oracle.com/javase/10/docs/api/java/time/YearMonth.html#now(java.time.ZoneId)

RELATED ARTICLES

3 COMMENTS

Most Popular

Dominic
32515 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6896 POSTS0 COMMENTS
Nicole Veronica
12012 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12109 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6963 POSTS0 COMMENTS