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?

link|improve this question

feedback

6 Answers

up vote 5 down vote accepted

You should check out Jazzy its used in some high profile Java applications. Two problems with it:

  1. has not been updated since 2005.
  2. only has an English dictionary on there SourceForge page.

There are some third party dictionaries floating around. I had one for French, last time I used jazzy.

link|improve this answer
2  
@Infamy Jazzy looks like the best candidate. For dictionaries, the OpenOffice project has a number of them (wiki.services.openoffice.org/wiki/Dictionaries) and they can be converted to the Jazzy word list format with JazzyDicts (sourceforge.net/projects/jazzydicts). – avernet Feb 18 '09 at 18:45
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.

link|improve this answer
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.

link|improve this answer
Good suggestion. Using a C++ library from Java will just add too much complexity for me, as I'd need to compile it for a number of different platform. But that definitely looks like a well-rounded library. – avernet Feb 18 '09 at 18:48
feedback

Check out JSpell by Page Scholar, http://www.jspell.com.

link|improve this answer
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.

link|improve this answer
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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.