I'm working on a multilingual software where I need to show synonyms of Chinese text to the user. I couldn't find any API that could give synonyms of a given Chinese word. I tried MS-Office proofing tools but they do not support thesaurus for chinese, rather they provide grammar, translation etc.

Please suggest some API or workaround to show the synonyms for chinese words.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

I googled "同义词词典" and found one at http://www.eqie.com/sc/sc11.htm. I tried "高兴" which means happy and got 2 synonyms "兴奋,愉快". http://dic.eqie.com/sc/search11.asp?keyword=%B8%DF%D0%CB&submit=%B2%E9%D1%AF

link|improve this answer
Thanks... But I need some API, webservice kind of think that I can use in back-end from my C#/C++ application. – Saubhagya Aug 18 '10 at 12:21
feedback

I would try and submit queries to Google Translate with the synonyms in English then get the Chinese results. Or you can parse and see if there are multiple results for one word. Basically it's Chinese -> English -> Chinese or Chinese -> English -> English Synonym -> Chinese assuming you can find an English thesaurus API/online.

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.