I'm writeing a multilingal Programm and I have set my Locales to Country specific ones (e.g. de_AT, de_DE,en_US,en_GB). So if I call DateFormat.getDateInstance(int fomat,Locale l) i get allways the English one! It works if I use language only Locales (e.g. en, de,...)
I have reviewed the Oracle Doc of DateFormat, but also with thier examples the Error occurs.
There is an example Programm:
import java.text.DateFormat;
import java.util.Locale;
import java.util.Date;
public class DateFormatTest {
public static void main(String args[]){
Locale[] locales={new Locale("de_AT"),new Locale("de_DE"), new Locale("de"), new Locale("en_US"), new Locale("en"), new Locale("fr_FR"), new Locale("fr_CA"), new Locale("fr")};
Date today= new Date();
for(Locale l: locales){
System.out.println(l.toString()+"\t"+
DateFormat.getDateInstance(DateFormat.DEFAULT,l).format(today)+"\t"+
DateFormat.getDateInstance(DateFormat.FULL,l).format(today));
}
}
}
This is the output:
huwa@hubefl-ws:~/tmp$ javac DateFormatTest.java
huwa@hubefl-ws:~/tmp$ java DateFormatTest
de_at Nov 8, 2011 Tuesday, November 8, 2011
de_de Nov 8, 2011 Tuesday, November 8, 2011
de 08.11.2011 Dienstag, 8. November 2011
en_us Nov 8, 2011 Tuesday, November 8, 2011
en Nov 8, 2011 Tuesday, November 8, 2011
fr_fr Nov 8, 2011 Tuesday, November 8, 2011
fr_ca Nov 8, 2011 Tuesday, November 8, 2011
fr 8 nov. 2011 mardi 8 novembre 2011
Has anybody the same problem? Is there an solution?
thx