我想通过单击一个按钮来显示一周中的一整天。动作将是这样的,例如假设月份是 2013 年 2 月,所以在第一次单击按钮时我想显示这几天。
3/11/2013, 4/11/2013, 5/11/2013, 6/11/2013, 7/11/2013, 8/11/2013, 9/11/2013
第二次单击按钮时,我想像这样显示
10/11/2013, 11/11/2013, 12/11/2013, 13/11/2013, 14/11/2013, 15/11/2013, 16/11/2013
同样,在每次单击按钮时,我都想以这种格式显示剩余的日子。那么如何做到这一点,我已经尝试过这段代码,但它会显示
3/11/2013, 4/11/2013, 5/11/2013, 6/11/2013, 7/11/2013, 8/11/2013, 9/11/2013
我使用的代码
Calendar c = Calendar.getInstance();
// Set the calendar to monday of the current week
c.set(Calendar.DAY_OF_WEEK, Calendar.SUNDAY);
// Print dates of the current week starting on Monday
DateFormat df = new SimpleDateFormat("dd/MM/yyyy", Locale.US);
for (int i = 0; i < 7; i++)
{
System.out.println(df.format(c.getTime()));
c.add(Calendar.DAY_OF_MONTH, 1);
}