直接获得本地时间
SimpleDateFormat decimalFormat = new SimpleDateFormat("yyyy年MM月dd日HH:mm:ss");
Date date = new Date(System.currentTimeMillis());
//得到当前的本地时间,例如:2019年7月11日0:36:40
String str = decimalFormat.format(date);
SimpleDateFormat sdf0 = new SimpleDateFormat("yyyy");
SimpleDateFormat sdf1 = new SimpleDateFormat("MM");
SimpleDateFormat sdf2= new SimpleDateFormat("dd");
String str1 = sdf0.format(date); //得到 年,例如:2019
String str2 = sdf1.format(date); //得到 月,例如:7
String str3 = sdf2.format(date); //得到 日,例如:11