以两位数格式显示日期
我在以两位数格式显示日期时遇到问题。我希望它是这样,当日或月是一个单一数字的例子:4它将显示04。我很难想出它的逻辑,如果有人能帮助我,我会非常感激。
Calendar c = Calendar.getInstance();
int year = c.get(Calendar.YEAR);
int day = c.get(Calendar.DAY_OF_MONTH);
int month = c.get(Calendar.MONTH);
if (month % 10 == 0) {
Place = 0 + month;
}
String Dates = year + "-" + Place + "-" + day;
Date.setText((Dates));