I often create SimpleDateFormat with a patterns like HH:mm:ss or yyyy-MM-dd to output dates in a locale independant way. Since there is a also constructor taking an additional locale parameter I'm wondering if there are cases where such a format can be locale dependant, or if I should always specify Locale.ENGLISH or Locale.GERMANY. Lets assume that the timezone is set explicitly.
|
|
||||
|
|
|
Just found the
On my system (in germany running an english version of ubuntu) this outputs the following list, lets hope the unicode character come through intact:
So Japan and Thailand use a different epoch but are otherwise based on the gregorian calendar, which explains why month and day are the same. Other locales also use different scripts for writing numbers, for example Hindi spoken in Indonesia and a variant of Thai in Thailand. To answer the question, the locale should alway be specified to a known value when a locale independant String is needed. Edit: Java 1.6 added a constant Locale.ROOT to specify a language/country neutral locale. This would be preferred to specifying the English locale for output targeted at a computer.
|
||||
|
|
|
Yes,
Or, you can use the localization-friendly
|
|||||||||||
|