List of usage examples for java.time ZonedDateTime ofStrict
public static ZonedDateTime ofStrict(LocalDateTime localDateTime, ZoneOffset offset, ZoneId zone)
From source file:Main.java
public static void main(String[] args) { ZonedDateTime z = ZonedDateTime.ofStrict(LocalDateTime.now(), ZoneOffset.UTC, ZoneId.systemDefault()); System.out.println(z);//from w w w. jav a2 s .c om }