I am using an angularjs date time picker that when used directly is in the format of:
2016-01-18T05:00:00:000Z
this angularjs format works for me, but later I store it off and when retrieved it is in the format of:
Mon Jan 18 2016 00:00:00 GMT-0500 (Eastern Standard Time)
Which does not work for me. So I need to take the non-working String representation of the date (second one), and convert it into my working representation (first one). I would imagine I have to convert it like String > Date > Diff String, but looking at SimpleDateFormat I don't even see where the T comes from in 2016-01-18T05:00:00:000Z
-Tpart of the target format. It'll be added literally duringformat.