SimpleDateFormat是 DateFormat的子类,支持自定义格式模式.
时间: 2023-11-22 09:48:54 浏览: 91
是的,SimpleDateFormat是DateFormat的子类,它支持自定义格式模式。我们可以使用SimpleDateFormat类来格式化日期和时间,也可以将字符串解析为日期和时间。下面是一个使用SimpleDateFormat类的例子:
```java
import java.text.SimpleDateFormat;
import java.util.Date;
public class DateFormatExample {
public static void main(String[] args) {
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Date date = new Date();
String formattedDate = formatter.format(date);
System.out.println("Formatted Date: " + formattedDate);
}
}
```
在上面的例子中,我们创建了一个SimpleDateFormat对象,并使用"yyyy-MM-dd HH:mm:ss"格式模式将当前日期和时间格式化为字符串。然后,我们打印出格式化后的日期和时间字符串。
阅读全文