java给定日期字符串,将它格式化输出
时间: 2024-03-25 20:37:54 浏览: 46
Java 中可以使用 SimpleDateFormat 类来将日期字符串按照指定的格式进行格式化输出。以下是一个示例代码,将给定的日期字符串 "2022-06-01 14:30:00" 格式化为 "yyyy年MM月dd日 HH:mm:ss" 的字符串:
```
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
public class DateExample {
public static void main(String[] args) {
String dateString = "2022-06-01 14:30:00";
SimpleDateFormat originalFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
SimpleDateFormat targetFormat = new SimpleDateFormat("yyyy年MM月dd日 HH:mm:ss");
try {
Date date = originalFormat.parse(dateString);
String formattedDate = targetFormat.format(date);
System.out.println(formattedDate);
} catch (ParseException e) {
e.printStackTrace();
}
}
}
```
输出结果为格式化后的日期字符串 "2022年06月01日 14:30:00"。在代码中,首先定义了一个原始日期格式和目标日期格式的 SimpleDateFormat 对象,然后使用原始日期格式的 parse() 方法将给定的日期字符串解析为 Date 对象,最后使用目标日期格式的 format() 方法将 Date 对象格式化为目标格式的字符串。在解析日期字符串时,需要注意捕获 ParseException 异常。
阅读全文