有没有办法在我的 C# 应用程序中嵌入 Bing 字典(而不是 bing 翻译器)?

发布于 2024-12-05 01:25:04 字数 52 浏览 0 评论 0原文

我想从 bing 词典获取数据,而不是从翻译器获取数据,在我的 C# 应用程序中该怎么办?

I want to get the data from the bing dictionary, not the translator, how can i do in my c# application?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

幽蝶幻影 2024-12-12 01:25:04

您在必应翻译 UI 中看到的词典无法通过 API 获得。

克里斯·温特
微软翻译

The dictionary you see in the Bing Translator UI is not available via the API.

Chris Wendt
Microsoft Translator

停顿的约定 2024-12-12 01:25:04

这里是 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).

想挽留 2024-12-12 01:25:04

实际上,您可以直接解析 url http 的输出: //www.microsofttranslator.com/dictionary.ashx?from=en&to=zh-CHS&text=sore

from = 原始语言
to = 翻译成您想要的语言
文本 = 原始语言中的单词

字符串源; // url 响应的输出
字符串翻译 = System.Uri.UnescapeDataString(source);

语言代码请参阅 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

string source; //output from the url response
string translation = System.Uri.UnescapeDataString(source);

Language code see https://msdn.microsoft.com/en-us/library/hh456380.aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文