JOrtho(Java Orthography Checker)
作者:互联网
我是JOrtho(Java Orthography Checker)项目的新手,想问一下如何以正确的方式使用SpellChecker? :
>例如,如何添加用户词典?
>如何设置新词典?
>如果我使用Tokenizer,将什么发送到itws构造函数?
我用过这段代码:(没关系)? :
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");
标签:java,spell-checking 来源: https://codeday.me/bug/20190902/1793950.html