java.time.LocalDateTime parse()方法

java.time.LocalDateTime.parse(CharSequence text)方法从文本字符串(例如2017-02-03T10:15:30)获取LocalDateTime的实例。

1 语法

public static LocalDateTime parse(CharSequence text)

2 参数

text:要解析的文本,例如2017-02-03T10:15:30,不为null。

3 返回值

本地日期,不为null。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.time.LocalDateTime parse()方法
 */
import java.time.LocalDateTime;

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

      LocalDateTime date = LocalDateTime.parse("2017-02-03T10:15:30");
      System.out.println(date);  
   }
}

输出结果为:

2017-02-03T10:15:30

 

热门文章

优秀文章