有没有办法在我的 C# 应用程序中嵌入 Bing 字典(而不是 bing 翻译器)?
我想从 bing 词典获取数据,而不是从翻译器获取数据,在我的 C# 应用程序中该怎么办?
I want to get the data from the bing dictionary, not the translator, how can i do in my c# application?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您在必应翻译 UI 中看到的词典无法通过 API 获得。
克里斯·温特
微软翻译
The dictionary you see in the Bing Translator UI is not available via the API.
Chris Wendt
Microsoft Translator
这里是 ac# 实现 ,另请查看 http://dict.bing.com.cn/io.aspx(bing词典协议服务器)。
here's a c# implementation ,also check out http://dict.bing.com.cn/io.aspx (bing dictionary protocol server).
实际上,您可以直接解析 url http 的输出: //www.microsofttranslator.com/dictionary.ashx?from=en&to=zh-CHS&text=sore
from = 原始语言
to = 翻译成您想要的语言
文本 = 原始语言中的单词
语言代码请参阅 https://msdn.microsoft.com/en-us/library/ hh456380.aspx
Actually you can directly parse the output from url http://www.microsofttranslator.com/dictionary.ashx?from=en&to=zh-CHS&text=sore
from = The original language
to = Translate to language you want
text = The word in the original language
Language code see https://msdn.microsoft.com/en-us/library/hh456380.aspx