Date.getTime() returns milliseconds since Jan 1, 1970. Unixtime is seconds since Jan 1, 1970. I don't usually code in java, but I'm working on some bug fixes. I have:

Date now = new Date();  	
Long longTime = new Long(now.getTime()/1000);
return longTime.intValue();

Is there a better way to get unixtime in java?

UPDATE

Based on John M's suggestion, I ended up with:

return (int) (System.currentTimeMillis() / 1000L);
link|improve this question

75% accept rate
2  
Since you're cast it to an int, you've introduced the year 2038 problem (the equivalent of Y2K for Unix). That's when Unix epoch hits 2 billion and rolls over to negative. The fix is to move to 64-bit Unix. The Java equivalent is to leave it as a long. – John M Apr 30 '09 at 3:16
1  
Yes, I am aware of that. The code this is interfacing with is expecting a 32bit int for unixtime. – Gary Richardson Apr 30 '09 at 4:37
1  
2038 is coming soon. – Pacerier Jan 13 at 10:17
feedback

1 Answer

up vote 52 down vote accepted

Avoid the Date object creation w/ System.currentTimeMillis(). A divide by 1000 gets you to Unix epoch.

As mentioned in a comment, you typically want a primitive long (lower-case-l long) not a boxed object long (capital-L Long).

long unixTime = System.currentTimeMillis() / 1000L;
link|improve this answer
Also consider using primitive long instead of autoboxing to Long, unless you want to handle the number as an Object (like put it into a Collection), again avoids unnecessary object creation – Brabster Apr 8 '09 at 22:05
If you can avoid using Date altogether, you will be better off anyway... – Varkhan Apr 8 '09 at 22:07
Actual UNIX timestamp should be denoted using int, correct? – Zorayr Feb 24 at 4:59
2  
The Java 32-bit int matches 32-bit platforms (and the year 2038 problem). 64-bit platforms use a larger time_t data type. Java dodged that bullet by using a long as the return for System.currentTimeMillis(). If you convert to int, you're re-introducing the year 2038 problem. See en.wikipedia.org/wiki/Year_2038_problem#Solutions – John M Feb 27 at 16:26
feedback

Your Answer

 
or
required, but never shown

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