在日期格式设置后以小写形式显示 AM 和 PM
2022-08-31 13:15:46
格式化日期时间后,时间以大写形式显示 AM 或 PM,但我希望它以小写形式显示,如 am 或 pm。
这是我的代码:
public class Timeis {
public static void main(String s[]) {
long ts = 1022895271767L;
String st = null;
st = new SimpleDateFormat(" MMM d 'at' hh:mm a").format(ts);
System.out.println("time is " + ts);
}
}