java.time.ZonedDateTime.of() Method Example



Description

The java.time.ZonedDateTime.of(LocalDateTime date, ZoneId zone) method obtains an instance of ZonedDateTime from a date-time and time-zone.

Declaration

Following is the declaration for java.time.ZonedDateTime.of(LocalDateTime date, ZoneId zone) method.

public static ZonedDateTime of(LocalDateTime date, ZoneId zone)

Parameters

  • date − the local datetime, not null

  • zone − the time-zone, not null

Return Value

the zoned date-time, not null.

Example

The following example shows the usage of java.time.ZonedDateTime.of(LocalDateTime date, ZoneId zone) method.

package com.tutorialspoint;

import java.time.LocalDateTime;
import java.time.ZonedDateTime;
import java.time.ZoneId;

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

      ZonedDateTime date = ZonedDateTime.of(LocalDateTime.now(), ZoneId.systemDefault());
      System.out.println(date);  
   }
}

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

2017-03-28T13:57:45.878+05:30[Asia/Calcutta]
Advertisements