1 public static void main(String[] args) throws ParseException { 2 SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd"); 3 Date parse = simpleDateFormat.parse("2021-11-24"); //string转Date 4 String format = simpleDateFormat.format(parse);//Date转string 5 6 }