Date d = new Date();
DateFormat dYear= new SimpleDateFormat("yyyy");
DateFormat dMonth = new SimpleDateFormat("MM");
String year = dYear.format(d);
String month= dMonth.format(d);
Date d = new Date();
DateFormat dYear= new SimpleDateFormat("yyyy");
DateFormat dMonth = new SimpleDateFormat("MM");
String year = dYear.format(d);
String month= dMonth.format(d);