Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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 3
example 2
file 1
for 1
four -1
input 1
is 1
of 1
project 1
This -1
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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Relational Database Design A Practical Approach

Authors: Marilyn Campbell

1st Edition

1587193175, 978-1587193170

More Books

Students also viewed these Databases questions

Question

2. Define communication.

Answered: 1 week ago