Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.time.ZonedDateTime;
import java.util.GregorianCalendar;

public class Main {
    public static void main(String[] args) {
        // ZonedDateTime from specific Calendar
        ZonedDateTime gregorianCalendarDateTime = new GregorianCalendar().toZonedDateTime();
        System.out.println(gregorianCalendarDateTime);
    }
}