I want to convert this 1416990366
timestamp to date. here is how I do:
Timestamp stamp = new Timestamp(1416990366);
System.out.println("TimeStamp: " + stamp.toString());
Date mDate = new Date(stamp.getTime());
but I get Sat Jan 17 13:06:30 GMT+03:30 1970
while it must be Wed, 26 Nov 2014 08:26:06 GMT
what is wrong?
Edit:
I get this value from server and I think they cut off miliseconds so i have to multiply it by 1000 but I get nothing, and again the wrong value.
why this still dose not work Timestamp stamp = new Timestamp(1000 * mIssue.getReleaseTime());
where mIssue.getReleaseTime() = 1416990366
can anyone help?