tl; dr
Permita que as modernas classes java.time do JSR 310 gerem automaticamente texto localizado, em vez de codificar com código de 12 horas e 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
Localizar automaticamente
Em vez de insistir no relógio de 12 horas com AM / PM, convém permitir que o java.time seja localizado automaticamente. Ligue DateTimeFormatter.ofLocalizedTime
.
Para localizar, especifique:
FormatStyle
para determinar quanto tempo ou abreviação a string deve ter.
Locale
para determinar:
- A linguagem humana para tradução do nome do dia, nome do mês e assim por diante.
- As normas culturais que decidem questões de abreviação, capitalização, pontuação, separadores e outros.
Aqui, obtemos a hora atual do dia, como visto em um fuso horário específico. Em seguida, geramos texto para representar esse tempo. Localizamos o idioma francês na cultura do Canadá e o idioma inglês na cultura dos EUA.
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 ) ;
Veja este código executado ao vivo em IdeOne.com .
10 h 31
10:31
SimpleDateFormat formatDate = new SimpleDateFormat("hh:mm a");