Valhalla Legends Archive

Programming => General Programming => Java Programming => Topic started by: iago on March 04, 2004, 03:21 PM

Title: How to use FILETIME (src)
Post by: iago on March 04, 2004, 03:21 PM
Here is a little function (I calculated the number by hand, and I *think* it's right, since a google search on it gets hits):

   public static long fileTimeToMillis(long fileTime)
   {
       return (fileTime / 10000L) - 11644473600000L;
   }


From there, you can use it just like any Java time:

java.util.Date myDate = new java.util.Date(fileTimeToMillis(myFileTime));