在Java的SimpleDateFormat
类中,你可以使用a
作为日期和时间模式字符串的一部分来获取AM/PM标记。例如:
SimpleDateFormat sdf = new SimpleDateFormat("hh:mm a");
Date now = new Date();
String strDate = sdf.format(now);
System.out.println("Current time in AM/PM format: " + strDate);
在这个例子中,"hh:mm a"
是日期和时间模式字符串,hh
表示小时,mm
表示分钟,a
表示AM/PM标记。sdf.format(now)
将返回一个字符串,表示当前时间,格式为AM/PM格式。
如果当前时间是上午,a
将被替换为AM
;如果当前时间是下午,a
将被替换为PM
。
领取专属 10元无门槛券
手把手带您无忧上云