Java时间转换-迎新项目笔记
在StudentInfo实体类中有生日属性:
private Date birthday;
在StudentInfoDto类中有生日属性:
private String birthday;
把Date转换成String类型:
if(studentInfo.getBirthday()!=null){ SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); String format = sdf.format(studentInfo.getBirthday()); studentInfoDto.setBirthday(format); }
把String转换成Date类型:
if(birthday!=null){
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
Date parse = sdf.parse(birthday);
studentInfo.setCsrq(parse);
}

浙公网安备 33010602011771号