How can I get seconds from 1970 in java ?

link|improve this question

65% accept rate
Haha, don't see that very often... Ummm, migrate to StackOverflow? :-D – JMD Jan 26 '10 at 19:27
this smells like homework – Ken Liu Jan 26 '10 at 20:52
feedback

migrated from superuser.com Jan 26 '10 at 20:48

This question came from our site for computer enthusiasts and power users.

2 Answers

up vote 10 down vote accepted

You mean epoch time? You can use

long epoch = (System.currentTimeMillis()/1000L);

that will get the number of seconds since January 1st 1970 UTC time.

this belongs on StackOverflow though, it will be moved there shortly so please don't repost.

link|improve this answer
Voting you up for a more complete answer:) – phoebus Jan 26 '10 at 21:59
You should divide by 1000L rather than 1000 to avoid unecessary casting. – Adamski Jan 26 '10 at 22:32
@Adamski haven't used java in a while, I only program now for making personal tasks faster :) Thanks for the heads up. – John T Jan 27 '10 at 18:23
feedback

java.lang.System.currentTimeMillis() gives you the time since Jan 1, 1970 in milliseconds. Just divide by 1000 to get the time in seconds.

link|improve this answer
+1 assuming it was posted simultaneously, as it happens all the time – stacker Jan 26 '10 at 21:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.