Tagged Questions
5
votes
2answers
231 views
Is there another way to retrieve default pattern for a given locale?
Is it possible to retrieve a default pattern for a given locale, without casting an object returned by DateFormat.get*Instance() to a SimpleDateFormat?
I understand, that in most cases everything ...
1
vote
2answers
133 views
SimpleDateFormat pattern based on locale
I need to build a date format like dd/MM/yyyy. It's almost like DateFormat.SHORT, but contains 4 year digits.
I try to implement it with
new SimpleDateFormat("dd//MM/yyyy", locale).format(date);
...
1
vote
3answers
2k views
SimpleDateFormat and locale based format string
I'm trying to format a date in Java in different ways based on the given locale. For instance I want English users to see "Nov 1, 2009" (formatted by "MMM d, yyyy") and Norwegian users to see "1. nov. ...
0
votes
1answer
413 views
android problem with SimpleDateFormat TimeZone
Let's consider this code sample:
DateFormat sdf = SimpleDateFormat.getTimeInstance(SimpleDateFormat.LONG,
new Locale("ru", "RU"));
Date date = sdf.parse("8:13:05 ...