百度翻译开放平台:点击打开链接 1. 定义类用于保存解析json得到的结果 public class Translation { public string Src { get; set; } public string Dst { get; set; } } public class TranslationResult { //错误码,翻译结果无法正常返回 public string Error_code { get; set; } public string Error_msg { get;
Go语言使用百度翻译api 之前做过一个使用百度翻译api的工具,这个工具用于用户的自动翻译功能,是使用C#调用百度翻译api接口,既然在学习Go语言,那必然也是要使用Go来玩耍一番.这里我是这么安排的,使用go做一个web服务,界面就用H5,然后使用用批处理写个脚本,打开go程序,然后打开浏览器(谷歌浏览器)访问.用户可以在浏览器网页中操作,好吧这里的用户估计就只有我会用吧.其中百度翻译api中的sign需要计算md5,那么Go中是如何计算md5的呢?参考如下: package main im
public string appid = "自己的APPID"; public string q = "要翻译的文本"; "; public string key = "你的密钥"; public string from = "你的源语言例如zh"; public string to = "要翻译成的语言例如en"; public string GetJson() { var client =