I want to get day of the month to actually subtract days from that field.
Note: The day is custom selected, like 2012-09-10
Date d2 = new SimpleDateFormat("yyyy-M-dd").parse("2012-10-24);
Calendar calendar= Calendar.getInstance();
Calendar csd= Calendar.getInstance();
calendar.setTime(d2);
csd.add(calendar.DAY_OF_MONTH, -5);
csd.add(calendar.get(Calendar.DAY_OF_MONTH), -5)
The above would actually error out saying IllegalArgumentException, but prints the correct value when I sysout it
calendar.DAY_OF_MONTH would not print the correct day that is in d2. I am confused if I am doing something wrong or this is not the right approach?
UPDATE
This is what I am having exactly in my code. I want any array of date range. Say the user had set the end Date to "2012-8-20" which is in d2. I want past 30 days worth of dates in an array, which the code doesn't work.
for(int count = 30; count >=1; count--) {
Calendar csd = Calendar.getInstance();
csd.add(calendar.DAY_OF_MONTH, -count);
String dt = (csd.get(Calendar.YEAR)) + "-" + (csd.get(Calendar.MONTH)+1) + "-" + (csd.get(Calendar.DATE));
aDays[30 - count] = dt;
}

calendarEndDatedefined? Why are you creating two different calendars? Why isd1relevant? – DNA Oct 23 '12 at 21:29