目前显示的时间为13:35 PM 但是,我想显示为AM/PM的12小时格式,即下午1:35而不是下午13:35

当前代码如下所示

private static final int FOR_HOURS = 3600000;
private static final int FOR_MIN = 60000;
public String getTime(final Model model) {
    SimpleDateFormat formatDate = new SimpleDateFormat("HH:mm a");
    formatDate.setTimeZone(userContext.getUser().getTimeZone());
    model.addAttribute("userCurrentTime", formatDate.format(new Date()));
    final String offsetHours = String.format("%+03d:%02d", userContext.getUser().getTimeZone().getRawOffset()
    / FOR_HOURS, Math.abs(userContext.getUser().getTimeZone().getRawOffset() % FOR_HOURS / FOR_MIN));
    model.addAttribute("offsetHours",
                offsetHours + " " + userContext.getUser().getTimeZone().getDisplayName(Locale.ROOT));
    return "systemclock";
}

当前回答

SimpleDateFormat formatDate = new SimpleDateFormat("hh:mm:ss a");

h表示AM/PM时间(1 ~ 12)。 H表示24小时次数(1 ~ 24次)。 a是AM/PM标记 M是以小时为单位的分钟

注意:两个h将打印前导零:01:13 PM。一个h打印时不带前导零:1:13 PM。

看来大家都抢在我前面了,我跑题了

其他回答

SimpleDateFormat sdf = new SimpleDateFormat("hh:mm:ss a");

("hh:mm:ss a") >>>这里如果我们不使用'a',那么24hours将会出现。所以如果我们想在你的时间AM/PM播放,只需添加这个格式。如有任何疑问,请告诉我。

SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd hh:mm a");

这将显示日期和时间

博士tl;

让现代的java。JSR 310的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.

31我

自动定位

与其坚持12小时的上午/下午,你可能想让java。时间自动为您本地化。DateTimeFormatter.ofLocalizedTime打电话。

要本地化,指定:

FormatStyle来确定字符串的长度或缩写。 要确定的区域: 人类用来翻译日名、月名等的语言。 文化规范决定缩写、大写、标点、分隔符等问题。

在这里,我们得到了在特定时区看到的当前时间。然后生成文本来表示该时间。我们在加拿大文化中本地化为法语,在美国文化中本地化为英语。

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 31我

只需替换下面的语句,它将工作。

SimpleDateFormat formatDate = new SimpleDateFormat("hh:mm a");
SimpleDateFormat formatDate = new SimpleDateFormat("hh:mm:ss a");

h表示AM/PM时间(1 ~ 12)。 H表示24小时次数(1 ~ 24次)。 a是AM/PM标记 M是以小时为单位的分钟

注意:两个h将打印前导零:01:13 PM。一个h打印时不带前导零:1:13 PM。

看来大家都抢在我前面了,我跑题了