fork(2) download
  1. import java.util.*;
  2. import java.text.*;
  3.  
  4. class Ideone
  5. {
  6. public static void main (String[] args) throws java.lang.Exception
  7. {
  8. String expiry = "2016-09-17 12:12:44";
  9.  
  10. SimpleDateFormat sdf1 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss", Locale.ENGLISH);
  11. Date endDate = sdf1.parse(expiry);
  12. System.out.println(endDate);
  13. }
  14. }
Success #stdin #stdout 0.06s 711680KB
stdin
Standard input is empty
stdout
Sat Sep 17 12:12:44 GMT 2016