java.text.ParseException while trying to parse a date in java
问题 I can not parse the string "16 Apr 2014 17:00" as a string. I've trying to use DateUtils in apachecommons library. here is the test code with the exception package com.buraktas; import java.text.ParseException; import java.util.Date; import org.apache.commons.lang3.time.DateUtils; import org.junit.Test; public class ParseDateTest { @Test public void test() throws ParseException { String date = "18 Apr 2014 20:00"; Date parseDate = DateUtils.parseDate(date, "dd MMM yyyy HH:mm"); System.out