Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.time.Instant;
import java.time.ZonedDateTime;
import java.time.temporal.Temporal;

public class Main {
    public static void main(String[] args) {
        Instant instant = Instant.parse("2014-12-03T10:15:30.00Z");
        ZonedDateTime l = ZonedDateTime.now();
        Temporal t = instant.adjustInto(l);
        System.out.println((ZonedDateTime) t);

    }
}