Instant toString()
returns a string representation of this instant
using ISO-8601 representation.
The format used is the same as DateTimeFormatter.ISO_INSTANT.
toString
has the following syntax.
public String toString()
The following example shows how to use toString
.
import java.time.Instant; 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.