如何在Java 中將java.util.Date 轉換為字串
Java 提供了多種方法將java.util.Date物件轉換為字串表示形式。以下是使用DateFormat#format 方法的一種方法:
使用DateFormat#format 將日期轉換為字串
以下程式碼片段示範如何將Date 物件轉換為使用DateFormat#format方法的字串:
import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Date; public class DateToStringExample { public static void main(String[] args) { String pattern = "MM/dd/yyyy HH:mm:ss"; // Create an instance of SimpleDateFormat used for formatting // the string representation of date according to the chosen pattern DateFormat df = new SimpleDateFormat(pattern); // Get the today date using Calendar object. Date today = Calendar.getInstance().getTime(); // Using DateFormat format method we can create a string // representation of a date with the defined format. String todayAsString = df.format(today); // Print the result! System.out.println("Today is: " + todayAsString); } }
此程式碼將輸出指定的當前日期和時間圖案。
以上是如何在 Java 中將 java.util.Date 轉換為字串?的詳細內容。更多資訊請關注PHP中文網其他相關文章!