Java ZoneId get fixed ZoneId

Description

Java ZoneId get fixed ZoneId

import java.time.ZoneId;

public class Main {
  public static void main(String[] args) {
    ZoneId fixedZoneId = ZoneId.of("+06:00");
    System.out.println(fixedZoneId);
  }//from   w  w w. j av  a2 s  .  c  om
}



PreviousNext

Related