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 7940873
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T23:29:55+00:00 2026-06-03T23:29:55+00:00

I have to print the EST time in my Java application. I had set

  • 0

I have to print the EST time in my Java application. I had set the time zone to EST using:

Calendar cal = Calendar.getInstance(TimeZone.getTimeZone("EST"));

But when the daylight savings is being followed in this timezone, my code does not print the correct time (it prints 1 hour less).

How to make the code work to read the correct time always, irrespective of whether the daylight savings are being observed or not?

PS: I tried setting the timezone to EDT, but it doesn’t solve the problem.

  • 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-03T23:29:57+00:00Added an answer on June 3, 2026 at 11:29 pm

    This is the problem to start with:

    Calendar cal = Calendar.getInstance(TimeZone.getTimeZone("EST"));
    

    The 3-letter abbreviations should be wholeheartedly avoided in favour of TZDB zone IDs. EST is Eastern Standard Time – and Standard time never observes DST; it’s not really a full time zone name. It’s the name used for part of a time zone. (Unfortunately I haven’t come across a good term for this “half time zone” concept.)

    You want a full time zone name. For example, America/New_York is in the Eastern time zone:

    TimeZone zone = TimeZone.getTimeZone("America/New_York");
    DateFormat format = DateFormat.getDateTimeInstance();
    format.setTimeZone(zone);
    
    System.out.println(format.format(new Date()));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to have Joda print 0 seconds if the input time is zero,
My silverlight application will have print capability, the printing module is created in separated
In our web application, we have print functionality for a couple of our pages
I have to print Java code that some times reaches 300 columns (characters per
I have print $str; abcd*%1234$sdfsd..#d The string would always have only one continuous stretch
I have a situation where I have to print out a NUL character if
if for example i have : #define PRINT(x) fprintf(stderr, x); and in code i
Is there a way to have rails print out a number with commas in
I have a generic Print method that iterates over a list and simply prints
I have a finger print scanner and it's SDK (brand : Suprema BioMini usb

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.