Instant toString() example
Description
Instant toString()
returns a string representation of this instant
using ISO-8601 representation.
The format used is the same as DateTimeFormatter.ISO_INSTANT.
Syntax
toString
has the following syntax.
public String toString()
Example
The following example shows how to use toString
.
import java.time.Instant;
/*ww w . j av a 2 s.co m*/
public class Main {
public static void main(String[] args) {
Instant instant = Instant.parse("2014-12-03T10:15:30.00Z");
System.out.println(instant.toString());
}
}
The code above generates the following result.