我是JOrtho(Java正交检查器)项目的新手,想问一下如何以正确的方式使用SpellChecker? :
例如
我使用了以下代码:(可以)吗? :
SpellChecker.setUserDictionaryProvider( new FileUserDictionary());
SpellChecker.registerDictionaries( null, null);
Tokenizer tok = new Tokenizer(SpellChecker.getCurrentDictionary(), SpellChecker.getCurrentLocale(),
SpellChecker.getOptions());
最佳答案
这对我有用;
FileUserDictionary f = new FileUserDictionary("path to dictionary folder");
SpellChecker.setUserDictionaryProvider(f);
SpellChecker.registerDictionaries(getCodeBase(),"en");