One reason that the constructor is deprecated is that the meaning of the year parameter is not what you would expect. The javadoc says:
As of JDK version 1.1, replaced by Calendar.set(year + 1900, month, date).
Notice that the year field is the number of years since 1900, so your sample code most likely won't do what you expect it to do. And that's the point.
In general, the Date API only supports the modern western calendar, has idiosyncratically specified components, and behaves inconsistently if you set fields.
The Calendar and GregorianCalendar APIs are better, but the 3rd-party Joda-time APIs are generally thought to be the best.