fork download
  1. import java.util.Date;
  2.  
  3. class Ideone
  4. {
  5. public static void main (String[] args) throws java.lang.Exception
  6. {
  7. String str = "/Date(1459461600000)/";
  8. long theNumber = Long.parseLong(str.substring(6, str.length() - 2));
  9. Date dt = new Date(theNumber);
  10. System.out.println(dt.toString());
  11. }
  12. }
Success #stdin #stdout 0.13s 321280KB
stdin
Standard input is empty
stdout
Thu Mar 31 22:00:00 GMT 2016