利用SimpleDateFormat或者LocalDateTime生成格式为“yyyy-MM-dd HH:mm:ss“的当前时间

 java程序:

// 利用LocalDateTime生成格式为"yyyy-MM-dd HH:mm:ss"的当前时间
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
LocalDateTime now = LocalDateTime.now();
String time1 = now.format(formatter);
System.out.println(time1);


// 利用SimpleDateFormat生成格式为"yyyy-MM-dd HH:mm:ss"的当前时间
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String time2 = sdf.format(new Date());
System.out.println(time2);

 

测试结果: 

利用SimpleDateFormat或者LocalDateTime生成格式为“yyyy-MM-dd HH:mm:ss“的当前时间_第1张图片

 

你可能感兴趣的:(java,开发语言)