Java TimeZone Create getServerTimeZone()

Here you can find the source of getServerTimeZone()

Description

return the server timezone

License

Apache License

Return

timezone

Declaration

public static TimeZone getServerTimeZone() 

Method Source Code


//package com.java2s;
/*//from w  ww.  j  a v  a 2  s  .  com
 * Copyright (C) 2011-2015 M2MLabs
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.util.TimeZone;

public class Main {
    /**
     * return the server timezone
     *
     * @return timezone
     */
    public static TimeZone getServerTimeZone() {
        String timezone = System.getProperty("SERVER_TIMEZONE");
        if (timezone == null) {
            return TimeZone.getDefault();
        } else {
            return TimeZone.getTimeZone(timezone);
        }
    }
}

Related

  1. codeToTimeZone(String tzString)
  2. getAvailableTimezones()
  3. getCurrentTimezone()
  4. getCurrentTimeZoneTime()
  5. getTimeZone()
  6. getTimeZone()
  7. getTimeZone()
  8. getTimeZone()