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
自动本地化
您可能不想让java.time自动为您本地化,而不是坚持使用AM / PM的12小时制。致电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");