日期转化yyyyMMdd 转 yyyy-MM-dd

SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd");
sdf.setLenient(false);
Date newDate= sdf.parse(date);
sdf = new SimpleDateFormat("yyyy-MM-dd");
sdf .format(newDate);

如果需要毫秒值  S即可

如yyyy-MM-dd HH:mm:ss.SSS

你可能感兴趣的:(日期转化yyyyMMdd 转 yyyy-MM-dd)