开发者

Java thesauraus [closed]

开发者 https://www.devze.com 2023-02-20 15:33 出处:网络
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers. 开发者_如何学Python

We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.

Closed 1 year ago.

Improve this question

Does anyone know where I can access and use a thesaurus using Java?

I want to be able to use it in Java and use it to get similar words, based on a given word. Is there a way to achieve this?


A simple google search -- http://words.bighugelabs.com/api.php

I would use the Jersey RESTful library to do the API calls. http://jersey.java.net/

Its a very simple Java library.

In fact, once you start using Jersey you will begin making more and more demanding service calls. For example you can create a service on your web server so that others can retrieve your data, so on and so on...


A service implementation would be your best bet - this way you don't have to maintain the dictionary yourself.

There is one at http://innovatiq.com/services/theSaurus.asmx?op=GetSynonyms.

There are quite a few more available by googling thesaurus web service.

0

精彩评论

暂无评论...
验证码 换一张
取 消