学习-Java字符串之String类格式化字符串之日期时间格式化输出
时间: 2023-12-01 13:43:24 浏览: 185
Python格式化字符串f-string概览(小结)
Java中的String类提供了format()方法,可以用于格式化字符串,其中包括日期时间格式化输出。下面是一个例子:
```java
import java.util.Date;
import java.text.SimpleDateFormat;
public class DateFormatExample {
public static void main(String[] args) {
Date date = new Date();
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String formattedDate = formatter.format(date);
System.out.println("Formatted Date: " + formattedDate);
}
}
```
在上面的例子中,我们使用了SimpleDateFormat类来格式化日期时间。我们创建了一个Date对象,然后创建了一个SimpleDateFormat对象,并将日期时间格式作为参数传递给它的构造函数。最后,我们使用format()方法将日期时间格式化为字符串,并将其打印到控制台上。
--相关问题--:
1. Java中还有哪些常用的日期时间格式化方式?
2. 如何将字符串转换为日期时间类型
阅读全文