fork download
  1. /* package whatever; // don't place package name! */
  2.  
  3. import java.text.ParseException;
  4. import java.text.SimpleDateFormat;
  5. import java.util.Date;
  6. import java.util.Locale;
  7.  
  8. /* Name of the class has to be "Main" only if the class is public. */
  9. class Ideone
  10. {
  11. public static void main (String[] args) throws java.lang.Exception
  12. {
  13. SimpleDateFormat input = new SimpleDateFormat("EEE, dd MMM yyyy HH:mm:ss Z",
  14. Locale.ENGLISH);
  15. SimpleDateFormat output = new SimpleDateFormat("yyyy-MM-dd");
  16.  
  17. Date date = input.parse("Wed, 30 Mar 2016 01:01:01 +0000");
  18. String outdate = output.format(date);
  19. System.out.println(outdate);
  20. }
  21. }
Success #stdin #stdout 0.13s 321280KB
stdin
Standard input is empty
stdout
2016-03-30