格式化时间分 12小时制和24小时制
- 使用SimpleDateFormat 时“hh”小写为12小时,“HH”大写为24小制:
- 12小时制
SimpleDateFormat sdf12 = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss")
- 24小时制
SimpleDateFormat sdf24 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
- 12小时制
- Calendar对象:
Calendar calendar = Calendar.getInstance(); calendar.get(Calendar.HOUR);// 12小时 calendar.get(Calendar.HOUR_OF_DAY);//24小时
时间: 2024-10-09 17:50:34