SimpleDateFormat.format的简单使用:parse的返回值是Date,format的返回值是String
场景一:将给定格式转换为指定格式:parse的返回值是Date,format的返回值是String输入01-29-2017输出2017/01/29先parse转化为date类型,再将其format为指定日期类型Stringstr="01-29-2017";SimpleDateFormatsd=newSimpleDateFormat("MM-dd-yyyy");Datedate=(Date)sd.p