java.time.LocalDateTime.parse() 方法示例



说明

java.time.LocalDateTime.parse(CharSequence 文本, DateTimeFormatter 格式化程序) 方法使用特定的格式化程序从文本字符串获取 LocalDateTime 实例。

声明

以下是 java.time.LocalDateTime.parse(CharSequence text, DateTimeFormatter formatter) 方法的声明。

public static LocalDateTime parse(CharSequence text, DateTimeFormatter formatter)

参数

  • 文本 − 要解析的文本,例如“2017-02-03T10:15:30”,非空。

  • 格式化程序 − 要使用的格式化程序,非空。

返回值

本地日期,非空。

异常

DateTimeParseException − 如果无法解析文本。

示例

以下示例演示了如何使用 java.time.LocalDateTime.parse(CharSequence text, DateTimeFormatter formatter) 方法。

package com.tutorialspoint;

import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;

public class LocalDateTimeDemo {
   public static void main(String[] args) {
  
      DateTimeFormatter dateTimeFormatter = DateTimeFormatter.ISO_OFFSET_DATE_TIME;
      String date = "2017-12-03T10:15:30+01:00";
      LocalDateTime date1 = LocalDateTime.parse(date, dateTimeFormatter);
      System.out.println(date1);
   }
}

让我们编译并运行上述程序,这将产生以下结果 −

2017-12-03T10:15:30
广告