ChronoLocalDate getLong() method in Java with Examples Last Updated : 29 Apr, 2019 Comments Improve Suggest changes Like Article Like Report The getLong() method of ChronoLocalDate interface in Java gets the era applicable at this date. Syntax: public long getLong(TemporalField field) Parameter: This method accepts a single mandatory parameter field which specifies the field to get and not null. Return Value: The function returns the value for the field. Exceptions: The program throws three exceptions which are described as below: DateTimeException: thrown if a value for the field cannot be obtained or the value is outside the range of valid values for the field. UnsupportedTemporalTypeException: thrown if the field is not supported or the range of values exceeds an long. ArithmeticException: thrown if numeric overflow occurs Below programs illustrate the getLong() method of ChronoLocalDate in Java: Program 1: Java // Program to illustrate the getLong() method import java.util.*; import java.time.*; import java.time.chrono.*; import java.time.temporal.ChronoField; public class GfG { public static void main(String[] args) { // Parses the date ChronoLocalDate dt = LocalDate.parse("2018-11-27"); // Prints the day number System.out.println(dt.getLong( ChronoField.DAY_OF_MONTH)); } } Output: 27 Program 2: Java // Program to illustrate the getLong() method import java.util.*; import java.time.*; import java.time.chrono.*; import java.time.temporal.ChronoField; public class GfG { public static void main(String[] args) { // Parses the date ChronoLocalDate dt = LocalDate.parse("2018-11-27"); // Prints the day number System.out.println(dt.getLong( ChronoField.DAY_OF_YEAR)); } } Output: 331 Program 3: Java // Program to illustrate the getLong() method // Exception Program import java.util.*; import java.time.*; import java.time.chrono.*; import java.time.temporal.ChronoField; public class GfG { public static void main(String[] args) { try { ChronoLocalDate dt = LocalDate.parse("2017-01-32"); System.out.println(dt.getLong( ChronoField.DAY_OF_MONTH)); } catch (Exception e) { System.out.println(e); } } } Output: java.time.format.DateTimeParseException: Text '2017-01-32' could not be parsed: Invalid value for DayOfMonth (valid values 1 - 28/31): 32 Reference: https://docs.oracle.com/javase/9/docs/api/java/time/temporal/TemporalAccessor.html#getLong-java.time.temporal.TemporalField- Comment K Kirti_Mangal Follow 0 Improve K Kirti_Mangal Follow 0 Improve Article Tags : Java Java-Functions Java-time package Java-ChronoLocalDate Explore Java BasicsIntroduction to Java3 min readJava Programming Basics9 min readJava Methods6 min readAccess Modifiers in Java4 min readArrays in Java7 min readJava Strings8 min readRegular Expressions in Java3 min readOOP & InterfacesClasses and Objects in Java9 min readAccess Modifiers in Java4 min readJava Constructors4 min readJava OOP(Object Oriented Programming) Concepts10 min readJava Packages7 min readJava Interface7 min readCollectionsCollections in Java12 min readCollections Class in Java13 min readCollection Interface in Java4 min readIterator in Java4 min readJava Comparator Interface4 min readException HandlingJava Exception Handling6 min readJava Try Catch Block4 min readJava final, finally and finalize4 min readChained Exceptions in Java3 min readNull Pointer Exception in Java5 min readException Handling with Method Overriding in Java4 min readJava AdvancedJava Multithreading Tutorial3 min readSynchronization in Java10 min readFile Handling in Java4 min readJava Method References9 min readJava 8 Stream Tutorial7 min readJava Networking6 min readJDBC Tutorial5 min readJava Memory Management4 min readGarbage Collection in Java6 min readMemory Leaks in Java3 min readPractice JavaJava Interview Questions and Answers15+ min readJava Programs - Java Programming Examples7 min readJava Exercises - Basic to Advanced Java Practice Programs with Solutions5 min readJava Quiz1 min readJava Project Ideas For Beginners and Advanced15+ min read Like