new SimpleDateFormat("yyyyMMddHHmmss").format(new Date())
这里可以用System.currentTimeMillis()来代替new Date(),从而提高性能
new SimpleDateFormat("yyyyMMddHHmmss").format(System.currentTimeMillis())
new SimpleDateFormat("yyyyMMddHHmmss").format(new Date())
这里可以用System.currentTimeMillis()来代替new Date(),从而提高性能
new SimpleDateFormat("yyyyMMddHHmmss").format(System.currentTimeMillis())
本文标题:系统当前时间获取及格式化
本文链接:https://www.haomeiwen.com/subject/blcggftx.html
网友评论