在Java中,可以使用java.util.Date
類或java.time.LocalDateTime
類來獲取當前時間并轉換格式。
使用java.util.Date
類:
import java.util.Date;
import java.text.SimpleDateFormat;
// 獲取當前時間
Date currentDate = new Date();
// 創建日期格式化對象
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
// 格式化日期
String formattedDate = format.format(currentDate);
System.out.println("當前時間:" + formattedDate);
使用java.time.LocalDateTime
類:
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
// 獲取當前時間
LocalDateTime currentDateTime = LocalDateTime.now();
// 創建日期時間格式化對象
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
// 格式化日期時間
String formattedDateTime = currentDateTime.format(formatter);
System.out.println("當前時間:" + formattedDateTime);