OffsetDateTime from() method in Java with examples
The from() method of OffsetDateTime class in Java obtains an instance of OffsetDateTime from a temporal object.
Syntax :
public static OffsetDateTime from(TemporalAccessor temporal)
Parameter : This method accepts a single parameter temporal which specfies the temporal object to convert, not null.
Return Value: It returns the local date, not null.
Exceptions: The function throws a DateTimeException that is if it is unable to convert to a OffsetDateTime.
Below programs illustrate the from() method:
Program 1 :
// Java program to demonstrate the from() method import java.time.OffsetDateTime; import java.time.ZonedDateTime; public class GFG { public static void main(String[] args) { // Function used OffsetDateTime date = OffsetDateTime.from(ZonedDateTime.now()); // Prints the date System.out.println(date); } } |
2018-12-12T08:24:12.442Z
Program 2 :
// Java program to demonstrate the from() method import java.time.OffsetDateTime; import java.time.ZonedDateTime; public class GFG { public static void main(String[] args) { // Function used OffsetDateTime date = OffsetDateTime.from(ZonedDateTime.now()); // Prints the date System.out.println(date); } } |
2018-12-12T08:24:15.077Z
Recommended Posts:
- OffsetDateTime get() method in Java with examples
- OffsetDateTime until() Method in Java with Examples
- OffsetDateTime with() Method in Java with Examples
- OffsetDateTime query() method in Java with Examples
- OffsetDateTime withMinute() method in Java with examples
- OffsetDateTime plusNanos() method in Java with examples
- OffsetDateTime plusSeconds() method in Java with examples
- OffsetDateTime plusWeeks() method in Java with examples
- OffsetDateTime plusYears() method in Java with examples
- OffsetDateTime withDayOfYear() method in Java with examples
- OffsetDateTime withMonth() method in Java with examples
- OffsetDateTime withHour() method in Java with examples
- OffsetDateTime plusMinutes() method in Java with examples
- OffsetDateTime minusWeeks() method in Java with examples
- OffsetDateTime minusMinutes() method in Java with examples
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.
Improved By : Akanksha_Rai