java获取当前时间
程序员文章站
2024-01-23 14:12:52
...
Date date = new Date(); // this object contains the current date value
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//设置日期格式
System.out.println(dateFormat.format(date));
上一篇: php定时执行任务