java.time.Instant.toString() Method Example



Description

The java.time.Instant.toString() method returns a string representation of this instant using ISO-8601 representation.

Declaration

Following is the declaration for java.time.Instant.toString() method.

public String toString()

Return Value

an ISO-8601 representation of this instant, not null

Example

The following example shows the usage of java.time.Instant.toString() method.

package com.tutorialspoint;

import java.time.Instant;

public class InstantDemo {
   public static void main(String[] args) {

      Instant instant = Instant.parse("2014-12-03T10:15:30.00Z");
      System.out.println(instant.toString());
   }
}

Let us compile and run the above program, this will produce the following result −

2014-12-03T10:15:30Z
Advertisements