1build a complete java program named textfileshoppinglist


1. Build a complete Java program named TextFileShoppingLIst. From its main method, call a method named writeShoppingList. This method takes an ArrayList of five strings provided by the user at the command line. Use a loop for repeated prompting and receiving of the five strings. Each string is written as a line in a text file named names.txt . Make sure to handle the exception that might be thrown and print the error message to the command line.

2. Build a complete Java program named NamesEvaluation. From its main method, call a method named obtainNames. This method should declare an array of three first names as strings. In the method, prompt the user for each name as a string. Each string should be a first name of at least five characters (e.g. "Charles") and the first character must be received as an uppercase letter. Keep in mind a first name may be more than one word (e.g. "Mary Lou"). If a data validation isn't passed, throw an error of the Exception class. Handle the exception in a method named handleError. This method should accept a string containing a suitable message about the type of error that occurred (e.g. "The name wasn't at least five characters."). The handleError method simply prints the string it received as an argument. Keep prompting the user, if necessary, until all data validations are passed.

3. Continuing from the previous exercise, now that data validations have been enforced, pass the array of five first names to a method named searchNames. This method does not return a value. It should prompt the user for which first name they wish to display in the array as an integer (e.g. "Enter the position number of the name you wish to see: "). Use a try...catch block to prompt the user and obtain the integer. Display the matching name at that array index position as a string. Handle three potential errors via the catch block. The first should take care of a non-integer index entry. The second should take care of an index entry that is out of bounds for the array size. The third should be of an Exception type. Each raised exception should include a suitable custom message for that exception type along with the result of its .getMessage() string.

Solution Preview :

Prepared by a verified Expert
Basic Computer Science: 1build a complete java program named textfileshoppinglist
Reference No:- TGS01551640

Now Priced at $15 (50% Discount)

Recommended (98%)

Rated (4.3/5)