を得ることができます。私はすでに見つかっ何は、どのように私は誰かが私が指定されたロケール(またはデフォルトのロケール)のデフォルトの日付と時刻のフォーマットパターン(String)を得ることができる方法を教えてもらえデフォルトの日付と時刻のフォーマットパターン
(他の誰かのために役に立つかもしれません):デフォルトのロケールを取得する方法
。
Locale currentLocale= Locale.getDefault(); System.out.print(currentLocale.toString()); Result is "en_US"
小数点の区切り記号を取得する方法。
DecimalFormatSymbols decimalFormatSymbols = new DecimalFormatSymbols(currentLocale); System.out.print(decimalFormatSymbols.getDecimalSeparator()); Result is "."
デフォルトの日付と時刻のフォーマットパターン(文字列)を取得する方法。
(do something) System.out.print(something); And got at output something like this: "dd/mm/yyyy" or "hh:mm:ss".. or other values for specified locale.
どうもありがとうございました。
UPD: 見つかりソリューション:
SimpleDateFormat simpleDateFormat = new SimpleDateFormat();
String dateLocalizedFormatPattern = simpleDateFormat.toLocalizedPattern();
The result of System.out.print(dateLocalizedFormatPattern)
on my device is "M/d/yy h:mm a".
私の答えを確認するhttp://stackoverflow.com/questions/10204291/convert-time-to-millisecond-and-find-out-time-period-in-java-or-android/10204628#10204628 – Khan