devxlogo

Understanding the Usage of the OffsetDateTime Class

Understanding the Usage of the OffsetDateTime Class

This class belong to java.time package. There are many options available, but here we will be using the ZoneId to get the current time.

import java.time.*;public class UsingOffsetDateTime{   public static void main(String args[])   {      UsingOffsetDateTime usingOffsetDateTime = new UsingOffsetDateTime();      usingOffsetDateTime.proceed();   }   private void proceed()    {      OffsetDateTime offsetDateTime = OffsetDateTime.now(ZoneId.systemDefault());      System.out.println("Current time in your location: " + offsetDateTime.now());   }}/*

Expected output:

[root@mypc]# java UsingOffsetDateTimeCurrent time in your location: 2018-05-12T13:54:47.295+05:30*/
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist