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日"