Dear Folks ,
I am having the problem in converting a string "2014-05-22T14:21:54.677" to a date object in android . I have used following approach
SimpleDateFormat dateFormater = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.SSSZ");
dateFormater.parse("2014-05-22T14:21:54.677");
I am getting java.text.parseexception . Please help me out how can i convert it to a date object?
