Date类型转成string类型 java
时间: 2023-08-29 21:07:29 浏览: 85
String类型转localDate,date转localDate的实现代码
5星 · 资源好评率100%
在Java中,可以使用SimpleDateFormat类将Date类型转换为String类型。以下是一个例子:
```
import java.text.SimpleDateFormat;
import java.util.Date;
public class DateToStringExample {
public static void main(String[] args) {
Date date = new Date();
SimpleDateFormat formatter = new SimpleDateFormat("dd/MM/yyyy");
String dateString = formatter.format(date);
System.out.println(dateString);
}
}
```
在这个例子中,我们创建了一个Date对象,然后使用SimpleDateFormat类将其格式化为字符串。在SimpleDateFormat构造函数中,我们指定了日期格式。在此例中,我们使用了"dd/MM/yyyy"格式,表示日期的格式为"day/month/year"。最后,我们使用format()方法将Date对象转换为字符串,并将其存储在一个字符串变量dateString中。
当然,你也可以使用其他格式来表示日期和时间。SimpleDateFormat类提供了许多不同的格式选项,可以根据需要进行选择。
阅读全文