Are you yourself in non-English locale, e.g. German?
Yes.
But I've figuerd it out.
I used System.out.println("encode: " + ftp.getControlEncoding());
to see what language the servere is set to, and
Locale loc = new Locale("US");
loc.setDefault(Locale.US);
ftp.setParserLocale(loc);
to set the Locale.
(I couldn't just set new Locale("US") for some reason. )
Tnx