在Java中可以使用SimpleDateFormat类来实现日期的格式化输出。以下是一个简单的示例代码:
import java.text.SimpleDateFormat;
import java.util.Date;
public class DateFormatExample {
public static void main(String[] args) {
Date date = new Date();
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String formattedDate = sdf.format(date);
System.out.println("Formatted Date: " + formattedDate);
}
}
在上面的例子中,我们首先创建一个Date对象表示当前日期和时间。然后创建一个SimpleDateFormat对象,并用指定的日期格式"yyyy-MM-dd HH:mm:ss"来初始化它。最后调用SimpleDateFormat的format方法将Date对象格式化为指定格式的字符串并输出。