如何在 Java 中将 java.util.Date 转换为字符串
问题:
需要将java.util.Date对象转换为Java中的格式化字符串,具体格式为"2010-05-30 22:15:52".
解决方案:
要将 java.util.Date 转换为 Java 中的字符串,可以使用DateFormat.format() 方法。此方法采用 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
来源:
http://www.kodejava.org/examples/86.html
以上是如何在 Java 中将 java.util.Date 对象格式化为字符串?的详细内容。更多信息请关注PHP中文网其他相关文章!