Let me start by saying that I know Date() is deprecated, I've looked at the other questions on here where everybody states that.
I'm doing an assignment which involves using Java Swing to develop a GUI, part of the GUI is a date of birth field with three JComboBox's for day, month and year respectively.
I've got the code to get the selected item from each three and then make the date:
Integer day = (Integer) dobDay.getSelectedItem();
Integer month = (Integer) dobMonth.getSelectedItem();
Integer year = (Integer) dobYear.getSelectedItem();
Date dob = new Date(day, month, year);
however the correct date is not what is output, I get things like
Date of Birth: Sat Oct 11 00:00:00 GMT 1919
If I select 14, 4 & 1900 from the combo boxes.
I can't figure out how to correct this, and I'm getting confused because I have a controllerConsole class to test my classes and inputs in which Date() works,
int dobD = 14;
int dobM = 4;
int dobY = 1990;
Employee e = new Employee("Gethin", 'M', new Date(dobD, dobM, dobY), "02",
new Date(9, 9, 2011));
Even though Date() is deprecated, from this I get the output I want: 14 April 1990 (I have a monthAsString constructor in my Date class to convert the month number to month name).
I would really appreciate any help with this! I've seen the Calendar class mentioned as an answer to this since Date() is deprecated but my assignment asks for use to use the Date() class, and I'm not sure what they would think if I chose to use Calendar instead.

Dateuses.) – Jon Skeet Jan 26 at 18:02