如何在 Java 中将 java.util.Date 转换为字符串
Java 提供了多种方法将 java.util.Date 对象转换为字符串表示形式。以下是使用 DateFormat#format 方法的一种方法:
使用 DateFormat#format 将日期转换为字符串
以下代码片段演示了如何将 Date 对象转换为使用 DateFormat#format 方法的字符串:
import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Date; public class DateToStringExample { public static void main(String[] args) { 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); } }
此代码将输出指定的当前日期和时间图案。
以上是如何在 Java 中将 java.util.Date 转换为字符串?的详细内容。更多信息请关注PHP中文网其他相关文章!