Home » Java Date from() Method with Examples

Java Date from() Method with Examples

by Online Tutorials Library

Java Date from() Method

The from(Instant instant) method of Java Date class returns an instance of date which is obtained from an Instant object.

Syntax:

Parameters

instant – It is the instant to convert

Return

It returns a date representing the same point on the timeline as the provided instant.

Exception

NullPointerException will be thrown if instant is null.

IllegalArgumentException will be thrown if the instant is too large to represent as a Date.

Example

Test it Now

Output:

date  : Tue Sep 25 10:27:41 IST 2018  

Next TopicJava Util Date

You may also like