我是JOrtho(Java正交检查器)项目的新手,想问一下如何以正确的方式使用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");
    

    10-05 19:00