首頁 >Java >java教程 >如何在 Java 中將 java.util.Date 物件格式化為字串?

如何在 Java 中將 java.util.Date 物件格式化為字串?

Barbara Streisand
Barbara Streisand原創
2024-12-13 14:47:11520瀏覽

How to Format a java.util.Date Object as a String in Java?

如何在 Java 中將 java.util.Date 轉換為字串

問題:

問題:

問題:

問題:
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);

Today is: 05/30/2010 22:15:52
問題:

需要將java.util.Date物件轉換為Java中的格式化字串,具體格式為"2010-05-30 22:15:52".

解決方案:要將java.util.Date 轉換為Java 中的字串,可以使用DateFormat.format()方法。此方法採用 Date 物件和格式化模式作為輸入,並傳回格式化的字串。 這裡有一個範例:此程式碼會列印指定的目前日期和時間格式:來源:來源:來源:來源:http://www.kodejava.org/examples/86.html

以上是如何在 Java 中將 java.util.Date 物件格式化為字串?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn