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



描述

java.time.ZonedDateTime.parse(CharSequence text, DateTimeFormatter formatter) 方法使用特定格式化器从文本字符串获取 ZonedDateTime 实例。

声明

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

public static ZonedDateTime parse(CharSequence text, DateTimeFormatter formatter)

参数

  • text − 要解析的文本,例如 "2007-12-03T10:15:30+01:00[Europe/Paris]", 非空。

  • formatter − 要使用的格式化器,非空。

返回值

本地日期,非空。

异常

DateTimeParseException − 如果无法解析文本。

示例

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

package com.tutorialspoint;

import java.time.ZonedDateTime;
import java.time.format.DateTimeFormatter;

public class ZonedDateTimeDemo {
   public static void main(String[] args) {
  
      DateTimeFormatter dateTimeFormatter = DateTimeFormatter.ISO_ZONED_DATE_TIME;
      String date = "2017-03-28T12:25:38.492+05:30[Asia/Calcutta]";
      ZonedDateTime date1 = ZonedDateTime.parse(date, dateTimeFormatter);
      System.out.println(date1);
   }
}

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

2017-03-28T12:25:38.492+05:30[Asia/Calcutta]
广告