String timeString = "2016-02-18T20:15:37.421Z";
How do I convert this into Date object? I tried something like this
DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String timeString = "2016-02-18T20:15:37.421Z";
Date date= dateFormat.parse(timeString);
That gives me an Unparseable date exception