我是JOrtho(Java Orthography Checker)项目的新手,想问问如何以正确的方式使用SpellChecker? :
我用过这段代码:(没关系)? :
SpellChecker.setUserDictionaryProvider( new FileUserDictionary());
SpellChecker.registerDictionaries( null, null);
Tokenizer tok = new Tokenizer(SpellChecker.getCurrentDictionary(), SpellChecker.getCurrentLocale(),
SpellChecker.getOptions());
答案 0 :(得分:4)
这对我有用;
FileUserDictionary f = new FileUserDictionary("path to dictionary folder");
SpellChecker.setUserDictionaryProvider(f);
SpellChecker.registerDictionaries(getCodeBase(),"en");
答案 1 :(得分:1)
说实话,这个项目的文档相当稀缺。您是否尝试过javadocs或sample code?