java.time.Instant.parse() Method Example



Description

The java.time.Instant.parse(CharSequence text) method obtains an instance of Instant from a text string such as 2007-12-03T10:15:30.00Z.

Declaration

Following is the declaration for java.time.Instant.parse(CharSequence text) method.

public static Instant parse(CharSequence text)

Parameters

text − the text to parse, not null.

Return Value

an instant, not null.

Exceptions

DateTimeException − if the text cannot be parsed.

Example

The following example shows the usage of java.time.Instant.parse(CharSequence text) method.

package com.tutorialspoint;

import java.time.Instant;

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

      Instant instant = Instant.parse("2017-02-03T10:37:30.00Z");     
      System.out.println(instant);  
   }
}

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

2017-02-03T10:37:30Z
Advertisements