java String.format 显示日期
时间: 2024-02-21 09:56:03 浏览: 71
日期的显示格式
5星 · 资源好评率100%
Java中的String.format方法可以用于格式化字符串,包括日期的显示。要显示日期,可以使用日期格式化模式。
以下是一个示例代码,演示如何使用String.format方法显示当前日期:
```java
import java.util.Date;
import java.text.SimpleDateFormat;
public class Main {
public static void main(String[] args) {
Date currentDate = new Date();
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
String formattedDate = String.format("当前日期:%s", dateFormat.format(currentDate));
System.out.println(formattedDate);
}
}
```
在上面的示例中,我们首先创建了一个Date对象表示当前日期。然后,我们创建了一个SimpleDateFormat对象,并指定日期格式为"yyyy-MM-dd",这表示年份-月份-日期。最后,我们使用String.format方法将日期格式化为字符串,并将其打印出来。
运行上述代码,输出将类似于以下内容:
```
当前日期:2022-01-01
```
你可以根据需要修改日期格式化模式,以满足你的具体需求。
阅读全文