Here you can find the source of determineTimeZoneId(String zoneId)
public static ZoneId determineTimeZoneId(String zoneId)
//package com.java2s; //License from project: Open Source License import java.time.ZoneId; public class Main { public static ZoneId determineTimeZoneId(String zoneId) { try {/* w w w .j a v a2 s .c o m*/ return ZoneId.of(zoneId); } catch (Exception e) {//NOSONAR return ZoneId.systemDefault(); } } }