格式化日期时间后,时间以大写形式显示 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);
}
}