将字符串日期转换为字符串日期不同格式
2022-09-02 05:00:43
我是Java的新手。Postgres db 包含日期格式为 。我需要转换为 .yyyy-MM-dd
dd-MM-yyyy
我已经尝试过这个,但显示错误的结果
public static void main(String[] args) throws ParseException {
String strDate = "2013-02-21";
DateFormat formatter = new SimpleDateFormat("dd-MM-yyyy");
Date da = (Date)formatter.parse(strDate);
System.out.println("==Date is ==" + da);
String strDateTime = formatter.format(da);
System.out.println("==String date is : " + strDateTime);
}