Complete java method called checkword that takes a string


1. a complete Java method called checkWord that takes a String parameter called word, returns nothing, and is declared to throw an Exception of type Exception. In the method, check if the first character of the parameter is a letter. If it is not a letter, the method throws an Exception of type Exception with the message of: "This is not a word."
2. a complete Java method called getWord that takes no parameters and returns a String. The method prompts the user for a word, and then calls the checkWord method you wrote in #1 above, passing as a parameter the word the user provided as input. Make sure the getWord method handles the Exception that may be thrown by checkWord.
3. a complete Java method called writeFile that takes two parameters: an array of Strings (arrayToWrite) and a String (filename). The method writes the Strings in the arrayTo array to a text file called filename (the parameter), with each String on a separate line.
4. complete Java method called readFile that takes a String as a parameter (filename) and returns an ArrayList of Strings (fileContents). The method reads the text file identified by the filename parameter and populates the ArrayList with an element for each line in the text file.
5. In your main method, do the following in the order specified:Call the getWord method you wrote in #2 above and print the result to the command line.
6. an array of Strings called testData and populate it with at least three elements.
7. l the writeFile method you wrote in #3 above passing the array you created in #5.2 and the String "data.txt".
8. the readFile method you wrote in #4 above to read the file you wrote in #5.3. Assign the result of readFile to an ArrayList variable in main called fileContents.
9. a loop to print the contents of the fileContents ArrayList to the command line.

Solution Preview :

Prepared by a verified Expert
JAVA Programming: Complete java method called checkword that takes a string
Reference No:- TGS02710298

Now Priced at $10 (50% Discount)

Recommended (96%)

Rated (4.8/5)