Apache Luncen SpellChecker in core java code
HI..
upto now i done like this can u suggest me..and but i didnt get result from this
package com.spellchecker;
import java.io.File;
import javax.xml.ws.soap.Addressing;
import org.apache.lucene.search.spell.PlainTextDictionary;
import org.apache.lucene.search.spell.SpellChecker;
import org.apache.lucene.store.Directory;
import org.apache.lucene.store.FSDirectory;
public class SpellCheckerExample {
public static void main(String[] args) throws Exception {
String wordForSuggestions = "hwllo";
int suggestionsNumber = 5;
File dir = new File("D:/spellchecker/");
Directory directory = FSDirectory.open(dir);
SpellChecker spellChecker = new SpellChecker(directory);
spellChecker.indexDictionary(
new PlainTextDictionary(new File("D:/dictionary.txt")));
String[] suggestions = spellChecker.
suggestSimilar(wordForSuggestions, suggestionsNumber);
if (suggestions!=null && suggestions.length>0) {
for (String word : suggestions) {
System.out.println("Did you mean:" + word);
}
}
else {
System.out.println("No suggestions found for word:"+wordForSuggestions);
}
}
}