I am using the below code to get a formatted date as 31-12-2014.
private Calendar mDummyDate;
mDummyDate = Calendar.getInstance();
mDummyDate.set(mDummyDate.get(Calendar.YEAR), 11, 31);
When i take logs, the year in mDummyDate
is set as 1970. What could be the reason?