fork(1) download
  1. import java.text.*;
  2. import java.util.*;
  3.  
  4. /* Name of the class has to be "Main" only if the class is public. */
  5. class Ideone
  6. {
  7. public static void main (String[] args) throws java.lang.Exception
  8. {
  9. SimpleDateFormat serverToClientFormat =
  10. new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssX",Locale.getDefault());
  11. System.out.println(serverToClientFormat.parse("2017-01-01T01:34:00+00:00"));
  12. }
  13. }
Success #stdin #stdout 0.07s 712192KB
stdin
Standard input is empty
stdout
Sun Jan 01 01:34:00 GMT 2017