java.time.Instant parse()方法

java.time.Instant.parse(CharSequence text)方法从文本字符串(例如2007-12-03T10:15:30.00Z)获取Instant的实例。

1 语法

public static Instant parse(CharSequence text)

2 参数

text:要解析的文本,而不是null。

3 返回值

瞬间,不是null。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 *  java.time.Instant parse()方法
 */
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);  
   }
}

输出结果为:

2017-02-03T10:37:30Z

 

热门文章

优秀文章