tl; dr
JSR 310 の最新のjava.timeクラスで、12時間クロックとAM / PMをハードコーディングするのではなく、ローカライズされたテキストを自動的に生成します。
LocalTime // Represent a time-of-day, without date, without time zone or offset-from-UTC.
.now( // Capture the current time-of-day as seen in a particular time zone.
ZoneId.of( "Africa/Casablanca" )
) // Returns a `LocalTime` object.
.format( // Generate text representing the value in our `LocalTime` object.
DateTimeFormatter // Class responsible for generating text representing the value of a java.time object.
.ofLocalizedTime( // Automatically localize the text being generated.
FormatStyle.SHORT // Specify how long or abbreviated the generated text should be.
) // Returns a `DateTimeFormatter` object.
.withLocale( Locale.US ) // Specifies a particular locale for the `DateTimeFormatter` rather than rely on the JVM’s current default locale. Returns another separate `DateTimeFormatter` object rather than altering the first, per immutable objects pattern.
) // Returns a `String` object.
午前10時31分
自動的にローカライズ
AM / PMで12時間制を主張するのではなく、java.timeが自動的にローカライズするようにすることができます。を呼び出しDateTimeFormatter.ofLocalizedTime
ます。
ローカライズするには、次のように指定します。
FormatStyle
文字列の長さまたは省略形を決定します。
Locale
決定する:
- 日の名前、月の名前などを翻訳するための人間の言語。
- 文化的規範略語、大文字と小文字、句読点、セパレータ、および、そのようなの問題を決定します。
ここでは、特定のタイムゾーンで見られる現在の時刻を取得します。次に、その時間を表すテキストを生成します。カナダの文化ではフランス語にローカライズし、アメリカの文化では英語にローカライズします。
ZoneId z = ZoneId.of( "Asia/Tokyo" ) ;
LocalTime localTime = LocalTime.now( z ) ;
// Québec
Locale locale_fr_CA = Locale.CANADA_FRENCH ; // Or `Locale.US`, and so on.
DateTimeFormatter formatterQuébec = DateTimeFormatter.ofLocalizedTime( FormatStyle.SHORT ).withLocale( locale_fr_CA ) ;
String outputQuébec = localTime.format( formatterQuébec ) ;
System.out.println( outputQuébec ) ;
// US
Locale locale_en_US = Locale.US ;
DateTimeFormatter formatterUS = DateTimeFormatter.ofLocalizedTime( FormatStyle.SHORT ).withLocale( locale_en_US ) ;
String outputUS = localTime.format( formatterUS ) ;
System.out.println( outputUS ) ;
IdeOne.comでこのコードがライブで実行されることを確認してください。
10時間31
午前10時31分
SimpleDateFormat formatDate = new SimpleDateFormat("hh:mm a");