在 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中文网其他相关文章!