SimpleDateFormat formatter = new SimpleDateFormat("yyyy年MM月dd日");
SimpleDateFormat formatter2 = new SimpleDateFormat("yyyy-MM-dd");
String time = formatter.format(formatter2.parse("2016-04-21"));
time最后为"2016年04月21日"
时间: 2024-11-11 05:09:17
SimpleDateFormat formatter = new SimpleDateFormat("yyyy年MM月dd日");
SimpleDateFormat formatter2 = new SimpleDateFormat("yyyy-MM-dd");
String time = formatter.format(formatter2.parse("2016-04-21"));
time最后为"2016年04月21日"