I am looking for an open source Java spell checking library which has dictionaries for at least the following languages: French, German, Spanish, and Czech. Any suggestion?
|
feedback
|
|
You should check out Jazzy its used in some high profile Java applications. Two problems with it:
There are some third party dictionaries floating around. I had one for French, last time I used jazzy. | |||||
feedback
|
|
Look at this: http://code.google.com/p/google-api-spelling-java/ This is a simple Java API that makes it very easy to call Google's spell checker service from Java applications. I tried it and it works very well. | |||
|
feedback
|
|
Hunspell looks like it could be of use. It is written in C++ but a java interface according to the home page. Tri-licensed under GPL, LGPL and MPL so you shouldn't have a problem with it. | |||
feedback
|
|
Check out JSpell by Page Scholar, http://www.jspell.com. | |||
|
feedback
|
|
Have a look at JaSpell. It comes with an internal spell checking engine or you can use aspell. Since the source is available, you can also attach aspell-like engines easily (like Hunspell). It comes with filters for TeX and XML and it has support for suggestion engines like keyboard distance, common misspellings (where you can define words and their replacements for common typos), Levenshtein distance, and phonetic distance. | |||
|
feedback
|
|
Another possible alternative is JOrtho http://jortho.sourceforge.net I haven't used it yet, but I'm evaluating the current Java Open Source spellcheckers to figure out which one to use. | |||
|
feedback
|