可可翻译者
我正在尝试开发一个能够将单词翻译成不同语言的应用程序。可可应用程序有哪些选项(可以基于免费词典)?
谢谢和问候,
I am trying to develop an application able to translate a word in different languages. What are the option (based on free dictionnaries is possible) for a cocoa application?
Thanks and regards,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我可能会选择一些简单的方法,并研究使用网络服务来为我做这件事,例如 http://translate.google.com 。然后我的代码就是简单地打包文本,将其发送到服务器,然后等待响应(这就是 Google 的 API 有效)。
I'd probably go with something simple and investigate using a webservice to do it for me, like http://translate.google.com. Then my code would be to simply package up the text, send it off to the servers, and wait for a response (which is how Google's API works).