import java.text.SimpleDateFormat;import java.util.Date; public class ceshi { public static void main(String[] args) { SimpleDateFormat objSDateFormat = new SimpleDateFormat( "yyyy-MM-dd HH:mm:ss");//转换为24小时制 String strCurrentTime = objSDateFormat.format(new Date()); System.out.println(strCurrentTime); } }
大写的HH为24小时制,小写的hh为12小时制。
在ss的后面加上 a,这样可以在后面显示上下午:显示效果为“2019-03-24 17:00:14 下午”