如何在 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中文網其他相關文章!