1、12小时制显示系统时间
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
String time = dateFormat.format(new Date()).toString();
System.out.println(time);
2、24小时制显示系统时间
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String time = dateFormat.format(new Date()).toString();
System.out.println(time);
说明:yyyy-MM-dd hh:mm:ss
改成:
yyyy-MM-dd_HH:mm:ss
就是把hh改成大写的HH.