Hi
I need to convert unix timestamp to date.
I did it like this:
java.util.Date time=new java.util.Date(timeStamp);
timestamp value is: 1280512800 and time must be "2010/07/30 - 22:30:00" (as I get it by PHP) but it is "Thu Jan 15 23:11:56 IRST 1970" by the code above!
What's the problem?