Tagged Questions

19
votes
1answer
16k views

Getting “unixtime” in Java

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 ...
3
votes
4answers
846 views

How can I convert from Gregorian Calendar to Unix Time, in Java?

I am in need of a method to convert GregorianCalendar Object to Unix Time (i.e. a long). Also need a method to convert Unix Time (long) back to GregorianCalendar Object. Are there any methods out ...
1
vote
2answers
126 views

Java converting unix time to date different on each computer,why?

i have weird situation i have simple code that looks like this : Date d = new Date(1308670980000L); SimpleDateFormat f = new SimpleDateFormat("dd.MM.yyyy,HH:mm"); String s = f.format(d); some ...