List of usage examples for java.time ZonedDateTime withFixedOffsetZone
public ZonedDateTime withFixedOffsetZone()
From source file:Main.java
public static void main(String[] args) { ZonedDateTime dateTime = ZonedDateTime.now(); ZonedDateTime l = dateTime.withFixedOffsetZone(); System.out.println(l);/*w w w . j av a2 s .co m*/ }