tl; Dr.
JSR 310'un modern java.time sınıflarının, 12 saatlik sabit kodlama ve AM / PM yerine otomatik olarak yerelleştirilmiş metin oluşturmasına izin verin .
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
Otomatik olarak yerelleştir
AM / PM ile 12 saatlik bir saatte ısrar etmek yerine, java.time'ın sizin için otomatik olarak yerelleştirilmesine izin vermek isteyebilirsiniz . Arayın DateTimeFormatter.ofLocalizedTime
.
Yerelleştirmek için şunları belirtin:
FormatStyle
dizenin ne kadar uzun veya kısaltılmış olduğunu belirlemek için.
Locale
belirlemek, birsey belirlemek:
- İnsan dili günün adının çeviri, ayın adı ve böyle için.
- Kültürel normlar kısaltması, harf, noktalama, ayırıcılar ve böyle konularını karar.
Burada belirli bir saat diliminde görüldüğü gibi günün saatini alıyoruz. Sonra o zamanı temsil etmek için metin üretiyoruz. Kanada kültüründe Fransızca, sonra ABD kültüründe İngilizce dilinde yerelleştiriyoruz.
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'da canlı olarak çalışan bu koda bakın .
10 sa 31
10:31
SimpleDateFormat formatDate = new SimpleDateFormat("hh:mm a");