Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9318597
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 19, 20262026-06-19T03:10:09+00:00 2026-06-19T03:10:09+00:00

We have a java programm which uses the -Duser.timezone parameter at startup: -Duser.timezone=CET This

  • 0

We have a java programm which uses the -Duser.timezone parameter at startup:

-Duser.timezone=”CET”

This is neccessary because we can’t rely on the servers internal clock (admins playing around, setting wrong timezones and so on, don’t ask 🙁 ) and it is important that the timezone of the frontend matches the backend.

As this program is not restarted regularly (it is a server) I was wondering what happens when we switch from winter- to summertime? Does it switch automatically or do we have to restart the server?

Thanks and regards,
Alex

Edit: It might be possible that java determines the correct timezone with ervery call to a function which uses dates. But it might also be possible that java determines the correct timezone once at startup.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-19T03:10:10+00:00Added an answer on June 19, 2026 at 3:10 am

    The time in Java is just a simple long value (milliseconds since 1970) without any information about the time zone. The java.util.Date and java.sql.Date also store the date/time internally as milliseconds since 1970, but with UTC time zone.

    The time zone comes into play, when you format a date/time for output or when you parse a date/time from a string. The time zone information you set via -Duser.timezone will be used at that time.

    So it should work and a little test also shows it:

    public static void main(String[] args) {
        Calendar c = Calendar.getInstance();
        c.set(2013, 2, 30, 23, 0, 0);
        long start = c.getTimeInMillis();
        long oneHour = 1000 * 60 * 60;
        long t = start;
        for (long i = 0; i < 5; i++) {
            System.out.println(new Date(t));            
            t = t + oneHour;
        }
    }
    

    using -Duser.timezone=GMT it will print: (no switch)

    Sat Mar 30 23:00:00 GMT 2013
    Sun Mar 31 00:00:00 GMT 2013
    Sun Mar 31 01:00:00 GMT 2013
    Sun Mar 31 02:00:00 GMT 2013
    Sun Mar 31 03:00:00 GMT 2013
    

    using -Duser.timezone=CET it will print: (switch at 2am)

    Sat Mar 30 23:00:00 CET 2013
    Sun Mar 31 00:00:00 CET 2013
    Sun Mar 31 01:00:00 CET 2013
    Sun Mar 31 03:00:00 CEST 2013
    Sun Mar 31 04:00:00 CEST 2013
    

    using -Duser.timezone=EET it will print: (Eastern European Time, one hour after CET)

    Sat Mar 30 23:00:00 EET 2013
    Sun Mar 31 00:00:00 EET 2013
    Sun Mar 31 01:00:00 EET 2013
    Sun Mar 31 02:00:00 EET 2013
    Sun Mar 31 04:00:00 EEST 2013
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a Java 3D program which uses lots (hundreds) of 3D models (3ds
I have avery simple program which uses MediaPLayer. I am new to java and
I have a simple program (written in Java) which uses the google protocol buffer
I have a java program which uses Runtime.exec() to spawn a child process, but
I have developed a Java Swing application, which uses the SwingWorker class to perform
I have a web app in Java, which uses some external program (invokes a
I have a Java program which uses a lot of text files. The program
I have a program which uses the Robot class in Java to automate a
I have the following algorithm implemented in Java which uses TCP/IP: -Client request a
I have a Java programm on linux which use sockets, which receive and send

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.