Wednesday, July 3, 2024
HomeLanguagesJavaChronoZonedDateTime get() method in Java with Examples

ChronoZonedDateTime get() method in Java with Examples

The get() method of ChronoZonedDateTime interface in Java is used to get the value of the specified field passed as input from this ChronoZonedDateTime as an integer.This method queries this ChronoZonedDateTime for the value of the field and the returned value will always be within the valid range of values for the field. When the field is not supported and the method is unable to return int value then an exception is thrown.

Syntax:

default int get(TemporalField field)

Parameters: This method accepts a single parameter field which represents the field to get.

Return value: This method returns an int value for the field.

Exception: This method throws following exceptions:

  • DateTimeException: if a value for the field cannot be obtained or the value is outside the range of valid values for the field.
  • UnsupportedTemporalTypeException : if the field is not supported or the range of values exceeds an int.
  • ArithmeticException : if numeric overflow occurs.

Below programs illustrate the get() method:
Program 1:




// Java program to demonstrate
// ChronoZonedDateTime.get() method
  
import java.time.*;
import java.time.chrono.*;
import java.time.temporal.ChronoField;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create a ChronoZonedDateTime object
        ChronoZonedDateTime zonedDT
            = ZonedDateTime
                  .parse(
                      "2018-12-06T19:21:12.123+05:30[Asia/Calcutta]");
  
        // apply get() method
        int result
            = zonedDT.get(
                ChronoField.NANO_OF_SECOND);
  
        // print result
        System.out.println("Value: "
                           + result);
    }
}


Output:

Value: 123000000

Program 2:




// Java program to demonstrate
// ChronoZonedDateTime.get() method
  
import java.time.*;
import java.time.chrono.*;
import java.time.temporal.ChronoField;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create a ChronoZonedDateTime object
        ChronoZonedDateTime zonedDT
            = ZonedDateTime.parse(
                "2018-10-25T23:12:31.123+02:00[Europe/Paris]");
  
        // apply get() method
        int result
            = zonedDT.get(
                ChronoField.MILLI_OF_SECOND);
  
        // print result
        System.out.println("Value: "
                           + result);
    }
}


Output:

Value: 123

Reference: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/ChronoZonedDateTime.html#get-java.time.temporal.TemporalField-

Nokonwaba Nkukhwana
Experience as a skilled Java developer and proven expertise in using tools and technical developments to drive improvements throughout a entire software development life cycle. I have extensive industry and full life cycle experience in a java based environment, along with exceptional analytical, design and problem solving capabilities combined with excellent communication skills and ability to work alongside teams to define and refine new functionality. Currently working in springboot projects(microservices). Considering the fact that change is good, I am always keen to new challenges and growth to sharpen my skills.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments