Problem Description You have been asked by Helicopter Parents, a popular website for parents, to write a Java GUI application that will show the popularity of a baby name for a particular year.
They have supplied you with baby name popularity data from 2006 to 2010. The application should ask the user for a Year, Gender, and Name.
The application will then show the rank information. Specifications You will need to ask for the Year, Gender and Name. Use a ComboBox for the Year and Gender, and a Textbox for the Name.
There should be a button named Find Ranking, and a non-editable Textbox that shows the ranking for the entered information. You have been provided with 5 text files containing ranking information. You are free to edit these anyway you wish.
However, your application needs to read from a text file(s) into a Java Collection. The information is not to be hardcoded in the code.
If there is no ranking for the entered information, a message saying such should be shown in the bottom Textbox. Page Break Error Checking Inputs There must be a value in all three user entered fields.
All fields need to be correct when the Find Ranking button is pressed. Use a Try-Catch blocks where you deem appropriate.