import java.text.DateFormat;
import java.util.Date;
import java.util.Locale;

public class TestDateFormat_Locale {

	public static void main(String[] args) {
		Locale currentLocale = new Locale("fr","CH");
		DateFormat formatter = DateFormat.getDateInstance(DateFormat.LONG, currentLocale);
		Date today = new Date(0);
		System.out.println(formatter.format(today));
		formatter = DateFormat.getDateInstance(DateFormat.FULL, currentLocale); 
		System.out.println(formatter.format(today));		 
	}

}
