Question: Write a program that will read from a file and display to the console all the words in the file in alphabetical order along with
Write a program that will read from a file and display to the console all the words in the file in alphabetical order along with the number of times each word appeared in the file. For example, if the input file is:
This is an example, of an input file for project four, as an example.
The output to the console would be:
an
example
file
for
four
input
is
of
project
This
To get the individual words from each line of the file use a regular expression perhaps with the split method of class String as shown in lecture. Note that the input file may contain reasonable punctuation marks separating the words.
Use a TreeMap to store the words and their counts that is TreeMap You will need to use the wrapper class Integer to hold the count of the words as TreeMaps do not store primitives. Allow the user to select the input file using a JFileChooser.
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
