JOrtho(Java 拼写检查器)

发布于 2024-12-09 15:56:07 字数 468 浏览 1 评论 0 原文

我是 JOrtho (Java Orthography Checker) 项目的新手,想问你如何正确使用 SpellChecker ? :

  1. 例如,如何添加用户词典?
  2. 如何设置新词典?
  3. 如果我使用 Tokenizer,要发送什么给 itws 构造函数?

我使用了这段代码:(可以吗)? :

SpellChecker.setUserDictionaryProvider( new FileUserDictionary());
SpellChecker.registerDictionaries( null, null); 
Tokenizer tok = new Tokenizer(SpellChecker.getCurrentDictionary(), SpellChecker.getCurrentLocale(),
SpellChecker.getOptions()); 

I'm new to JOrtho (Java Orthography Checker) project, wanna ask u how to use SpellChecker in the right way ? :

  1. for example, how to add User dictionary ?
  2. how to set new dictionaries ?
  3. if i use Tokenizer, what to sent to itws constructor ?

I used this code: (is it ok ) ? :

SpellChecker.setUserDictionaryProvider( new FileUserDictionary());
SpellChecker.registerDictionaries( null, null); 
Tokenizer tok = new Tokenizer(SpellChecker.getCurrentDictionary(), SpellChecker.getCurrentLocale(),
SpellChecker.getOptions()); 

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

2024-12-16 15:56:07

这对我有用;

FileUserDictionary f = new FileUserDictionary("path to dictionary folder");
SpellChecker.setUserDictionaryProvider(f);
SpellChecker.registerDictionaries(getCodeBase(),"en"); 

This worked for me;

FileUserDictionary f = new FileUserDictionary("path to dictionary folder");
SpellChecker.setUserDictionaryProvider(f);
SpellChecker.registerDictionaries(getCodeBase(),"en"); 
罪歌 2024-12-16 15:56:07

说实话,这个项目的文档相当匮乏。您是否尝试过 javadocs示例代码

Truth be told, the documentation for this project is rather scarce. Have you tried the javadocs or the sample code?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文