SimpleDateFormat格式化日期示例
时间: 2024-03-28 09:34:39 浏览: 71
SimpleDateFormat格式化日期
Sure! SimpleDateFormat是Java中用于格式化和解析日期的类。下面是一个示例,展示了如何使用SimpleDateFormat来格式化日期:
```java
import java.text.SimpleDateFormat;
import java.util.Date;
public class DateFormatExample {
public static void main(String[] args) {
// 创建SimpleDateFormat对象,指定日期格式
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
// 创建一个Date对象,表示当前时间
Date currentDate = new Date();
// 使用SimpleDateFormat对象将Date对象格式化为指定格式的字符串
String formattedDate = sdf.format(currentDate);
// 打印格式化后的日期字符串
System.out.println("Formatted Date: " + formattedDate);
}
}
```
上述示例中,我们创建了一个SimpleDateFormat对象,并指定了日期格式为"yyyy-MM-dd HH:mm:ss"。然后,我们创建了一个Date对象表示当前时间,并使用SimpleDateFormat对象将其格式化为指定格式的字符串。最后,我们打印出格式化后的日期字符串。
阅读全文