I am having problems when paging dates that express the abbreviated month to 3 characters. I use a SimpleDateFormar that I build in the following way:
DateFormat dateFormat = new SimpleDateFormat("dd MMM HH:mm yyyy", new Locale("es")) ;
When I try to parse a date with September month written "sep" I get an error because with this SimpleDateFormat September it represents it as "sept."
How can I get my SimpleDateFormat to be able to read the month of September represented by "sep"? I did several tests changing the Locale but I could not solve it.