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



说明

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

声明

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

public static LocalDate parse(CharSequence text, DateTimeFormatter formatter)

参数

  • text − 要解析的文本,例如“2017-02-03”,不能为空。

  • formatter − 要使用的格式程序,不能为空。

返回值

本地日期,不能为空。

异常

DateTimeParseException − 如果该文本无法解析。

示例

以下示例显示了 java.time.LocalDate.parse(CharSequence text, DateTimeFormatter formatter) 方法的用法。

package com.tutorialspoint;

import java.time.LocalDate;
import java.time.format.DateTimeFormatter;

public class LocalDateDemo {
   public static void main(String[] args) {
	   
	   DateTimeFormatter dateTimeFormatter = DateTimeFormatter.ofPattern("dd MMM uuuu");
	   String date = "03 Feb 2017";
	   LocalDate localDate = LocalDate.parse(date, dateTimeFormatter);
	   System.out.println(localDate);
   }
}

让我们编译并运行以上程序,它将生成以下结果 −

2017-02-03
广告