To make my topic more popular i'll speak here with myself:)
I found source of this error. It's becouse i'm from Russia. In classes UnixFileParsers and WindowsFileParcer used constructor
private final static SimpleDateFormat formatter =
new SimpleDateFormat("MM-dd-yy hh:mma");
But SimpleDataFormat use Local options for names of the months, and FTPServer using english names, so here must be
private final static SimpleDateFormat formatter =
new SimpleDateFormat("MM-dd-yy hh:mma",Locale.US);
I hope in next version author will change it!
Sorry for my English.