JAVA problem In this exercise, you will create a simple spell checker program. Y
ID: 3815398 • Letter: J
Question
JAVA problem
In this exercise, you will create a simple spell checker program. Your program will have the following characteristics:
Your program will be capable of reading multiple files to be spell checked from command line arguments.
When your program starts up, you will read in the dictionary.txt file which contains a list of known words. Only read in this file once. Store these words in a HashSet data structure.
Create a TreeSet to store any miss-spelled words that you find.
For each file in the command line parameter list, print out the name of the file before reading in any words.
For each file parse out each of the words in the file and check to see if the word is in the HashSet you created with the dictionary.txt words or its already in your list of miss-spelled words.
If the word is in the dictionary HashSet or the miss-spelled word TreeSet then proceed to the next word.
If the word is not in the dictionary or the miss-spelled word list, give your user 2 choices: Add the word to the HashSet dictionary, or add the word to the list of miss-spelled words.
At the end of each file processed, dump out the list of miss-spelled words.
When you then start to read in the next file, make sure you clear the list of miss-spelled words. Keep any words added to the dictionary HashSet.
More details:
In parsing the words in these text files, you will need to filter out punctuation characters. I used the StringTokenizer, and I called the following constructor:
StringTokenizer st = new StringTokenizer(line, " ,.;:-%'"");
before checking the word against the dictionary, make sure you lower case the word
if the "word" doesn't start out with a letter (i.e. >= 'a' And <= 'z'), then skip it because it is likely a number
If the word couldn't be found in either list and ends with an 's', try removing the 's' to create a singular version of the word and try again to find the word in your dictionary or miss-spelled word list using the singular version of the word.
Only print out lines that contain a word needing a user response. See the Sample output below from the published answer.
Use the following dictionary file
dictionary.txt
You can find the input files to test from the following links:
Russia.txt
Ukraine.txt
Your command line arguments will be:
Russia.txt Ukraine.txt
When you execute your program to publish your output, answer "n" to the question of whether to add the word to the dictionary for all words except the for the word "christianity" .
See the sample output below:
Some of the output from running this program should look something like:
First part of the output from running the published answer
For those of you who like to see a template of the published answer, here it is:
Explanation / Answer
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.*;
import java.util.*;
public class SpellCheck {
// We could hava also used TreeSet for the dictionary
private HashSet<String> dictionary = new HashSet<String>();
private TreeSet<String> miss_spelled_words = new TreeSet<String>();
public SpellCheck() throws FileNotFoundException
{
// Add all of the words from "dictionary.txt" to the dictionary HashSet
BufferedReader br = null;
FileReader fr = null;
StringTokenizer st ;
try {
fr = new FileReader("dictionary.txt");
br = new BufferedReader(fr);
String line;
while ((line = br.readLine()) != null) {
st = new StringTokenizer(line, " ,.;:-%'"");
while(st.hasMoreTokens())
dictionary.add(st.nextToken());
}
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
if (br != null)
br.close();
if (fr != null)
fr.close();
} catch (IOException ex) {
ex.printStackTrace();
}
}
}
public void checkSpelling(String fileName) throws FileNotFoundException
{
System.out.println("======== Spell checking " + fileName + " =========");
Scanner sc=new Scanner(System.in);
String option = "";
String rword = "";
// Clear miss_spelled_words
miss_spelled_words.clear();
// Read in each line from "fileName"
BufferedReader br = null;
FileReader fr = null;
StringTokenizer st ;
try {
fr = new FileReader(fileName);
br = new BufferedReader(fr);
String line;
String word;
while ((line = br.readLine()) != null) { // For each line, break the line into words using the following StringTokenizer
st = new StringTokenizer(line, " ,.;:-%'"");
while(st.hasMoreTokens())
{
// lower case each word obtained from the StringTokenizer
word = st.nextToken().toLowerCase() ;
// Skip over word if it can be found in either dictionary, or miss_spelled_words
if(dictionary.contains(word)||miss_spelled_words.contains(word)||(word.charAt(0)>64&&word.charAt(0)<91)||(word.charAt(0)>96&&word.charAt(0)<123))
// lower case each word obtained from the StringTokenizer
continue;
// If word ends with 's', then try the singular version of the word in the dictionary and //miss_spelled_words ... skip if found
else if(Character.toString(word.charAt((word.length())-1)).equals("s"))
{
rword = word.substring(0,(word.length())-1);
if(dictionary.contains(word)||miss_spelled_words.contains(word))
continue;
else
{
System.out.println("If you want to add"+word+" to dictionary write d or to miss_spelled write m");
option=sc.next();
if( option.equals("d"))
dictionary.add(word);
else if(option.equals("m"))
miss_spelled_words.add(word);
else
System.out.println("Invalid input hence skipping the word"); }
}
else
{
System.out.println("If you want to add"+word+" to dictionary write d or to miss_spelled write m");
option=sc.next();
if( option.equals("d"))
dictionary.add(word);
else if(option.equals("m"))
miss_spelled_words.add(word);
else
System.out.println("Invalid input hence skipping the word");
}
}
}
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
if (br != null)
br.close();
if (fr != null)
fr.close();
} catch (IOException ex) {
ex.printStackTrace();
}
}
}
public void dump_miss_spelled_words()
{
// Print out the miss-spelled words
System.out.println(miss_spelled_words);
}
public static void main(String[] args) {
try {
SpellCheck spellCheck = new SpellCheck();
for (int i=0; i < args.length; i++)
{
spellCheck.checkSpelling(args[i]);
spellCheck.dump_miss_spelled_words();
}
}
catch (FileNotFoundException e)
{
System.out.println(e);
}
}
}
Related Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.