Java Application Synonym Support

I am trying to find an API or something similar that could help me find synonyms for the word I entered, I want to use it in my Java application.

I have a lot of googled but have not found a good solution.

Please help me if anyone has a solution to my problem.

+2
java synonym
source share
3 answers

You can use Wordnet. You can ask him synonyms, hyperonyms, hyponyms and many other semantic relationships.

It has an API for almost every programming language. This is the link to get the Java API:

http://wordnet.princeton.edu/wordnet/related-projects/#Java

+9
source share

There are non- web services that provide synonyms. One of them is Watson's synonym service . Use some Java web services library to use it .

+3
source share

Look at Jazzy , although this is a spell check, but may also suggest similar words.

0
source share

All Articles