fork download
  1. import java.util.*;
  2. import java.lang.*;
  3. import java.text.*;
  4.  
  5. class Main
  6. {
  7. public static void main (String[] args) throws java.lang.Exception
  8. {
  9. DateFormat df = new SimpleDateFormat("HH:mm:ss.SSS");
  10. df.setTimeZone(TimeZone.getTimeZone("GMT"));
  11. System.out.println(df.format(new Date(1500)));
  12. }
  13. }
Success #stdin #stdout 0.11s 380864KB
stdin
Standard input is empty
stdout
00:00:01.500