I am trying to take 3 separate integer inputs (year,month,day) and taking these 3 entries and forming an object of date from them so I can use it to compare other dates.
This is what I have so far, at a loss at where to go from here:
public void compareDates() {
String dayString = txtOrderDateDay.getText();
String monthString = txtOrderDateMonth.getText();
String yearString = txtOrderDateYear.getText();
int day = Integer.parseInt(dayString);
int month = Integer.parseInt(monthString);
int year = Integer.parseInt(yearString);
}
Many thanks for any help you have to offer.
Try this, noticing that months start in zero so we need to subtract one to correctly specify a month:
Or this:
Or this:
The first method gives you more control, as it allows you to set other fields in the date, for instance:
DAY_OF_WEEK, DAY_OF_WEEK_IN_MONTH, DAY_OF_YEAR, WEEK_OF_MONTH, WEEK_OF_YEAR, MILLISECOND, MINUTE, HOUR, HOUR_OF_DAYetc.Finally, for correctly formatting the date as indicated in the comments, do this: