java.time.ZonedDateTime.format() Method Example



Description

The java.time.ZonedDateTime.format(DateTimeFormatter formatter) method formats this date-time using the specified formatter.

Declaration

Following is the declaration for java.time.ZonedDateTime.format(DateTimeFormatter formatter) method.

public String format(DateTimeFormatter formatter)

Parameters

formatter − the formatter to use, not null.

Return Value

the formatted date string, not null.

Exceptions

DateTimeException − if an error occurs during printing.

Example

The following example shows the usage of java.time.ZonedDateTime.format(DateTimeFormatter formatter) method.

package com.tutorialspoint;

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

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

      ZonedDateTime date = ZonedDateTime.parse("2017-03-28T12:13:20.408+05:30[Asia/Calcutta]");
      System.out.println(date);  
      DateTimeFormatter formatter = DateTimeFormatter.ISO_TIME;
      System.out.println(formatter.format(date));  
   }
}

Let us compile and run the above program, this will produce the following result −

2017-03-28T12:13:20.408+05:30[Asia/Calcutta]
12:13:20.408+05:30
Advertisements