I have following code to get different parts of current system Date (10-11-2011 for this case).
Calendar now = Calendar.getInstance();
String dt = ""+now.get(now.DATE)+"-"+now.get(now.MONTH)+"-"+now.get(now.YEAR);
Here, DATE and YEAR fields are giving values as expected but MONTH field is giving unexpected results, firstly I didn't knew that MONTH field starts with zero, so having current month as 11 will give me 10. Now, if I use now.get(now.MONTH+1) than it returns 46. And using simply now.MONTH instead of using get method gives 2.
So, what am I doing wrong here? it shouldn't be a bug in Calendar class.
Note that I'm using JDK 7.