fork download
  1. /* package whatever; // don't place package name! */
  2.  
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  6.  
  7. /* Name of the class has to be "Main" only if the class is public. */
  8. class Ideone
  9. {
  10. public static void main (String[] args) throws java.lang.Exception
  11. {
  12. // your code goes here
  13. System.out.println(convertDoubleToWindowsTime(42197.8683188657));
  14. }
  15. public static Date convertDoubleToWindowsTime(double comTime) {
  16. long result = 0;
  17. comTime = comTime - 25569D;
  18. Calendar cal = Calendar.getInstance();
  19. result = Math.round(86400000L * comTime)
  20. - cal.get(Calendar.ZONE_OFFSET);
  21. cal.setTime(new Date(result));
  22. result -= cal.get(Calendar.DST_OFFSET);
  23.  
  24. return cal.getTime();
  25. }
  26. }
Success #stdin #stdout 0.12s 321024KB
stdin
Standard input is empty
stdout
Sun Jul 12 20:50:22 GMT 2015