SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); Date curDate = new Date(System.currentTimeMillis()); String date = formatter.format(curDate);
三个步骤,获取系统的日期和时间。
"yyyy-MM-dd HH:mm:ss" :为时间日期格式,yyyy MM dd HH mm ss分别对应年月日小时分钟秒,格式可以自定义方式,或者只显示日期或者时间。
时间: 2024-10-08 14:19:28