According to the Java API, the constructor Date(year, month, day) is deprecated. I know that I can replace it with the following code:
Calendar myCal = Calendar.getInstance();
myCal.set(Calendar.YEAR, theYear);
myCal.set(Calendar.MONTH, theMonth);
myCal.set(Calendar.DAY_OF_MONTH, theDay);
Date theDate = myCal.getTime();
However, I would like something shorter to replace it with (ideally one to two lines).
You could use
new GregorianCalendar(theYear, theMonth, theDay).getTime():