I'm finding a way to store "083752" value (timestamp value in long data format) to Mysql database (type = DateTime). Thus, I need to convert that value to human readable date time. I use following code to do that.
long l = 083752;
Date date = new Date(l);
System.out.println(date.toString());
Edit What i need to do is 83752 => 1/2/1970 4:45:52 AM
But it doesn't works. I followed this page also.