java如何获取当前时间
作者:互联网
调用此私有方法即可!:
public static String getNow() {
Date date = new Date(System.currentTimeMillis());
DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
return dateFormat.format(date);
}
输出的时间格式修改
“yyyy-MM-dd hh:mm:ss”
即可
标签:java,dateFormat,ss,dd,yyyy,获取,当前,Date,new 来源: https://blog.csdn.net/GBS20200720/article/details/122722621