It is quite easy to format and parse Java Date (or Calendar) classes using instance of DateFormat, i.e. I could format current date into short localize date like this:
DateFormat formatter = DateFormat.getDateInstance(DateFormat.SHORT, Locale.getDefault());
String today = formatter.format(new Date());
My problem is: I need to obtain this localized pattern string (i.e. something like "MM/dd/yy"). This should be a trivial task, but I just couldn't find the provider...
java.text.SimpleDateFormatlets you specify your own date format. – David Bullock Jan 4 '11 at 14:13DateFormat.getDateInstance(DateFormat.SHORT, Locale.getDefault())actually uses internally? – David Bullock Jan 4 '11 at 14:27