目前显示的时间为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";
}

当前回答

用“hh:mm a”代替“hh:mm a”。这里hh表示12小时格式,hh表示24小时格式。

现场演示

其他回答

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

这将显示日期和时间

SimpleDateFormat dateFormat = new SimpleDateFormat("dd-MMM-yy hh.mm.ss.S aa");
String formattedDate = dateFormat.format(new Date()).toString();
System.out.println(formattedDate);

输出: 9月11日-13日下午12.25.15.375

如果你想要当前时间与AM, PM在Android使用

String time = new SimpleDateFormat("hh : mm a", Locale.getDefault()).format(Calendar.getInstance().getTime());

如果你想要当前时间的上午,下午

String time = new SimpleDateFormat("hh : mm a", Locale.getDefault()).format(Calendar.getInstance().getTime()).toLowerCase();

OR

API级别26

LocalTime localTime = LocalTime.now();
DateTimeFormatter dateTimeFormatter = DateTimeFormatter.ofPattern("hh:mm a");
String time = localTime.format(dateTimeFormatter);

用“hh:mm a”代替“hh:mm a”。这里hh表示12小时格式,hh表示24小时格式。

现场演示

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。

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