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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T00:08:47+00:00 2026-05-22T00:08:47+00:00

I know this has been a hot topic over the time… but I can’t

  • 0

I know this has been a hot topic over the time… but I can’t find a suitable answer.

I have the current UTC time in ms, which I need to compare to the current time in my machine (so they should match).

long myUTCtime = .....; // This reflects the UTC time
// myDate is in UTC, ok, I agree
Date myDate = new Date();
// When I use getTime() I get the localtime in ms, although not in UTC! but in DST
long milis = myDate.getTime();
// I get here a 60 minute difference
long difference = milis - myUTCtime;

How can I do this?

Thanks in advance.

EDIT: I don’t need the calendar or anything. I’m not showing the information to the user, I just want to use UTC times, and Date is supposed to be ALWAYS in UTC

  • 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-05-22T00:08:48+00:00Added an answer on May 22, 2026 at 12:08 am
    Date myDate = new Date();
    long milis = myDate.getTime();
    

    should be equivalent to the simpler:

    long milis = System.currentTimeMillis();
    

    Both should return

    the difference, measured in
    milliseconds, between the current time
    and midnight, January 1, 1970 UTC

    Quick check in my linux box:

    # cat X.java
    public class X { public static void main(String[] args) {
                    System.out.println( (new java.util.Date()).getTime());
                    System.out.println( System.currentTimeMillis());
            } }
    
    # javac X.java ; java X ; perl -e 'print time()*1000'
    1305133124654
    1305133124654
    1305133124000
    

    Perhaps you have an interpretation issue…

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know this has been asked before, but i can't find a good answer
I know this has been asked before, but I did not find its answer
I know this has been asked before but I have looked at every answer
I know this has been covered a lot, but I just can't seem to
I know this has been discussed many times, but I am not sure I
I know this question has been asked before, but I ran into a problem.
I know this question has been asked a bit before. But looking around I
I know this specific question has been asked before , but I am not
I know this has been asked before, but I've found a different way to
I know this has been asked before but there is really not a clear

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.