I want to create a function that will convert the days into milliseconds. The days format is stored as 0.2444, so how to convert this to milliseonds?
| show 3 more comments |
|
In addition to the other answers, there is also the TimeUnit class which allows you to convert one time duration to another. For example, to find out how many milliseconds make up one day:
Note that this method takes a |
|||
|
|
|
Won't |
|||
|
or as
|
||||
|
|
|
24 hours = 86400 seconds = 86400000 milliseconds. Just multiply your number with 86400000. |
|||
|
|
|
Its important to mention that once in 4-5 years this method might give a 1 second error, becase of a leap-second (http://www.nist.gov/pml/div688/leapseconds.cfm), and the correct formula for that day would be
There is a question Are leap seconds catered for by Calendar? and the answer is no. So, if You're designing super time-dependant software, be careful about this formula. |
|||
|
|

0.2444what does it signifies ? – Jigar Joshi Aug 8 '11 at 9:55