在 Java 中,java.util.Date 類別表示特定的時間點。但是,如果您需要將日期作為字串使用,則需要將其轉換為字串格式。
要將 Date 物件轉換為字串,您可以使用 DateFormat#format 方法。此方法可讓您指定確定如何轉換日期的格式模式。
以下是如何使用 DateFormat#format 方法的範例:
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);
在此範例中,pattern 變數指定輸出字串的格式。 df 變數是 SimpleDateFormat 的實例,用於格式化日期。 Today 變數是 Date 的實例,表示目前日期和時間。 TodayAsString 變數是目前日期和時間的字串表示形式。
您可以在 http://www.kodejava.org/examples/86.html 找到更多關於如何使用 DateFormat#format 方法的範例.
以上是如何在 Java 中將 java.util.Date 物件轉換為字串?的詳細內容。更多資訊請關注PHP中文網其他相關文章!