在Java中,可以使用SimpleDateFormat類來實現日期時間的格式化。以下是一個簡單的示例代碼:
import java.text.SimpleDateFormat;
import java.util.Date;
public class DateTimeFormatting {
public static void main(String[] args) {
Date date = new Date();
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String formattedDate = sdf.format(date);
System.out.println("Formatted Date: " + formattedDate);
}
}
在這個示例中,我們首先創建一個Date對象表示當前日期和時間。然后使用SimpleDateFormat類創建一個格式化模式為"yyyy-MM-dd HH:mm:ss"的SimpleDateFormat對象。最后,調用format方法將日期對象格式化為字符串并打印出來。
可以根據需要修改SimpleDateFormat的格式化模式來滿足不同的日期時間格式化要求。