[Solved]Java Write Java Program Allows User Write Reminders Associate Different Dates Using Follow Q37072827
(java) write in java a program that allows the user to writereminders and associate them to different dates using thefollowing:
a)you must use a hashing table, where the key of the table is thedate and the content is a string that represents the reminder ofthe same date.define a class that will represent a date thatconsist of day, month and year(note that you have to redefine themethod equals and hascode so that the date will work as needed as akey in the hashing table).
b)the GUI will consist of three elements of type Jcombobox that areused to input date(day, month, year):
1)a text field that is used to writing and showing the reminderof the given date
2)a button to save the text(that is shown in the text field),below the chosen date. this text will substitute the existingreminder(if exists).
3)a button to show the reminder that is associated to the givendate and showing it in the text field. if there is no reminder thatis associated to this date, an empty string will be shown. the usercan edit the text and save it in order to update an existingreminder.
the program will save the reminder in a file(the user will providean name to the file).
the user can load the data from an existing file or start a newcollection of reminders
thank you very much for helping me with this
Expert Answer
Answer to (java) write in java a program that allows the user to write reminders and associate them to different dates using the f… . . .
OR

