Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

[JAVA] The code below works but it needs to be changed to follow these instructions ( Count the occurrences of words in a text file

[JAVA]

The code below works but it needs to be changed to follow these instructions

(Count the occurrences of words in a text file) Rewrite Listing 21.9 to read the text from a text file. The text file is passed as a command-line argument. Words are delimited by whitespace characters, punctuation marks (, ; . : ?), quotation marks (' "), and parentheses. Count the words in a case-sensitive fashion (e.g., consider Good and good to be the same word). The words must start with a letter. Display the output of words in alphabetical order, with each word preceded by the number of times it occurs.

------------------------------------------------------------

import java.io.*;

import java.util.*;

public class CountWordsFile {

public static void main(String[] args){

//String javaprogramming = args[0];

TreeMap treeMap=new TreeMap();

int wordCount = 0;

try{

Scanner input = new Scanner(new File("testing.txt"));

while (input.hasNextLine()){

String line=input.nextLine();

String[]words=line.split("\\s+");

wordCount = wordCount+words.length;

for (int i=0;i

if (words[i].trim().length () >0 && words[i].trim().matches("[A-Z|a-z]+")){

String key =words[i].toLowerCase();

if (treeMap.get(key)!=null){

int count =treeMap.get(key);

count++;

treeMap.put(key,count);

}

else{

treeMap.put(key, 1);

}

}

}

}

}

catch (Exception ex){

ex.printStackTrace();

}

Set>entrySet=treeMap.entrySet();

System.out.println(" Total words in the file: "+wordCount);

for (Map.Entryentry: entrySet) {

System.out.println(entry.getValue()+"\t" +entry.getKey());

}

}

}

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

Database 101

Authors: Guy Kawasaki

1st Edition

0938151525, 978-0938151524

More Books

Students also viewed these Databases questions

Question

Discuss the history of human resource management (HRM).

Answered: 1 week ago