java.time.ZonedDateTime.ofLocal() Method Example



Description

The java.time.ZonedDateTime.ofLocal(LocalDateTime localDateTime, ZoneId zone, ZoneOffset preferredOffset) method obtains an instance of ZonedDateTime from a local date-time using the preferred offset if possible.

Declaration

Following is the declaration for java.time.ZonedDateTime.ofLocal(LocalDateTime localDateTime, ZoneId zone, ZoneOffset preferredOffset) method.

public static ZonedDateTime ofLocal(LocalDateTime localDateTime, ZoneId zone, ZoneOffset preferredOffset)

Parameters

  • localDateTime − the local date-time, not null.

  • zone − the time-zone, not null.

  • preferredOffset − the zone offset, null if no preference.

Return Value

the zoned date-time, not null.

Example

The following example shows the usage of java.time.ZonedDateTime.ofLocal(LocalDateTime localDateTime, ZoneId zone, ZoneOffset preferredOffset) method.

package com.tutorialspoint;

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

public class ZonedDateTimeDemo {
   public static void main(String[] args) {
 
      ZonedDateTime date = ZonedDateTime.ofLocal(LocalDateTime.now(), ZoneId.systemDefault(),ZoneOffset.UTC );
      System.out.println(date);  
   }
}

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

2017-03-28T14:06:01.451+05:30[Asia/Calcutta]
Advertisements