你好
SimpleDateFormat aa = new SimpleDateFormat("yyyy-MM-dd KK:mm aa",Locale.ENGLISH);
String time = aa.format(new Date());
System.out.println(time);
用这个方法,加入参数Locale.ENGLISH,既可输出am或者pm。如果加入参数Locale.CHINESE,既可输出“上午”或者“下午”
public static void main(String[] args) {
Date date = new Date();
SimpleDateFormat sdformat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss a");
String LgTime = sdformat.format(date);
System.out.println(LgTime);
}
yyyy-MM-dd hh:mm:ss zzz