I am a beginner and i want to convert this String into a Date Instance. Why get i an unparsable Exception ? Can anyone help me ?
String s= "2020 Mar 11 11:09:42";
SimpleDateFormat formatter = new SimpleDateFormat("yyyy MMM d HH:mm:ss");
Date parsedDate = formatter.parse(s);