欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C#基于百度AI实现机器翻译功能

程序员文章站 2022-06-18 12:02:44
目录1、注册百度账号api,创建自己的api应用2、创建vs控制台应用程序3、编写程序并调试post请求工具类文本翻译-通用版文本翻译-词典版文本翻译-图片翻译总结随着“一带一路&rdqu...

随着“一带一路”政策的开展,各种项目迎接而来,语言不通就成为了痛点。

作为开发人员,相信大家对于翻译不陌生吧,百度翻译,有道词典、谷歌翻译等等或多或少都用过(汉-英,汉-日,汉-俄等等)。

我们现在就基于百度ai开放平台进行机器翻译,demo使用的是c#控制台应用程序,后续有需要的可以嫁接到指定项目中使用。

1、注册百度账号api,创建自己的api应用

注册地址: https://login.bce.baidu.com/

注册登录之后,在“产品服务” 菜单下找到机器翻译 ,点击进入,如下图:

C#基于百度AI实现机器翻译功能

注意,这里我们需要先进行 领取免费资源 ,开发完成后根据后期需求决定是否进行付费操作,如下图所示:

C#基于百度AI实现机器翻译功能

C#基于百度AI实现机器翻译功能

领取后,创建我们的api应用,如下图(主要是api key和secret key):

C#基于百度AI实现机器翻译功能

C#基于百度AI实现机器翻译功能

C#基于百度AI实现机器翻译功能

2、创建vs控制台应用程序

创建vs控制台应用程序,命名为translateproject。

.net framework/.net core的都可以,甚至于web应用也行,因为这是api操作。

C#基于百度AI实现机器翻译功能

3、编写程序并调试

post请求工具类

创建一个http请求接口帮助类(webrequest方式api请求方式(post/get)),命名为 httptool(自定义命名),大家可以在网上找一个,或者用下面的:

/// <summary>
        /// post请求方式
        /// </summary>
        /// <param name="url">请求路径</param>
        /// <param name="parms">传入的值,格式为:{city:"上海",city2:"重庆"}</param>
        /// <param name="token"></param>
        /// <param name="contenttype"></param>
        /// <returns></returns>
        public string httppost(string url, string parms, string token,string contenttype= "application/json")
        {
            string result = string.empty;
            try
            {
                if (url.startswith("https:"))
                {
                    //要调用https的api接口,一定要加这句
                    servicepointmanager.securityprotocol = (securityprotocoltype)3072;
                }

                encoding encoding = encoding.utf8;  //转译编码
                httpwebrequest request = (httpwebrequest)webrequest.create(url);//创建
                request.method = "post";   //post请求的一些标准参数配置
                request.accept = "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8";
                request.contenttype = contenttype;

                //自定义头部内容
                if (!string.isnullorempty(token))
                {
                    request.headers.add(httprequestheader.authorization, token);  //添加token
                }

                byte[] buffer = encoding.getbytes(parms);  //译编传入的值格式化为可识别
                request.contentlength = buffer.length;  //post传值参数标配
                request.getrequeststream().write(buffer, 0, buffer.length);
                httpwebresponse response = (httpwebresponse)request.getresponse(); //尝试获得要请求的url的返回消息
                using (streamreader reader = new streamreader(response.getresponsestream(), encoding.utf8))
                {
                    result = reader.readtoend();
                }
            }
            catch (exception ex)
            {
                result = "";
            }
            return result;
        }

 

文本翻译-通用版

通用版api文档:https://cloud.baidu.com/doc/mt/s/4kqryjku9 

直接看文档就可以了,我这里把代码展示一下,大家拷贝一下就可以执行。

如下代码和展示:

using newtonsoft.json;
using system;
using system.collections.generic;
using system.linq;
using system.net.http;
using system.text;
using system.threading.tasks;

namespace translateproject
{
    class program
    {
        // 百度云中开通对应服务应用的 api key 建议开通应用的时候多选服务(百度云应用的ak)
        private static string clientid = "qnldyxxtir2pkbqsv242369y";
        // 百度云中开通对应服务应用的 secret key(百度云应用的sk)
        private static string clientsecret = "l6gemod3pm2pmafyqubnxpcgeemk18mr";
        static void main(string[] args)
        {
            try
            {
                #region 文本翻译-通用版

                //获取token:详细见 https://ai.baidu.com/ai-doc/reference/ck3dwjhhu
                string tokenjson = getaccesstoken();
                if (!string.isnullorempty(tokenjson))
                {
                    accesstoken tokenentity = jsonconvert.deserializeobject<accesstoken>(tokenjson);
                    if (!string.isnullorempty(tokenentity.error))
                    {
                        if (tokenentity.error == "invalid_client" && tokenentity.error_description == "unknown client id")
                            console.writeline("api key不正确");
                        else if (tokenentity.error == "invalid_client" && tokenentity.error_description == "client authentication failed")
                            console.writeline("secret key不正确");
                        else
                            console.writeline("未知错误:获取token失败");
                        console.readkey();
                        return;
                    }

                    string url = "https://aip.baidubce.com/rpc/2.0/mt/texttrans/v1?access_token="+ tokenentity.access_token;
                    string q = "文本翻译是百度翻译依托领先的自然语言处理技术推出的在线文本翻译服务,可支持中、英、日、韩等200+语言互译,100+语种自动检测。";
                    string parms = "{ \"q\":\"" + q + "\",\"from\":\"zh\",\"to\":\"en\"}"; //from:翻译源语言     to:翻译目标语言     q:请求翻译内容

                    httptool httppost = new httptool();
                    var strjson = httppost.httppost(url, parms, "", "application/json;charset=utf-8");
                    console.writeline(strjson);
                    console.readkey();
                }

                #endregion
            }
            catch (exception ex)
            {
                console.writeline("翻译失败:" + ex.message);
            }
        }

        //调用getaccesstoken()获取的 access_token建议根据expires_in 时间 设置缓存
        public static string getaccesstoken()
        {
            try
            {
                string authhost = "https://aip.baidubce.com/oauth/2.0/token";
                httpclient client = new httpclient();
                list<keyvaluepair<string, string>> paralist = new list<keyvaluepair<string, string>>();
                paralist.add(new keyvaluepair<string, string>("grant_type", "client_credentials"));
                paralist.add(new keyvaluepair<string, string>("client_id", clientid));
                paralist.add(new keyvaluepair<string, string>("client_secret", clientsecret));

                httpresponsemessage response = client.postasync(authhost, new formurlencodedcontent(paralist)).result;
                string result = response.content.readasstringasync().result;
                return result;
            }
            catch (exception ex)
            {
                return "";
            }
            
        }
                
        public class accesstoken
        {
            public string refresh_token { get; set; }
            public int expires_in { get; set; }
            public string scope { get; set; }
            public string session_key { get; set; }
            public string access_token { get; set; }
            public string session_secret { get; set; }
            public string error { get; set; }
            public string error_description { get; set; }

        }
    }
}

C#基于百度AI实现机器翻译功能

文本翻译-词典版

词典版api文档:https://cloud.baidu.com/doc/mt/s/nkqrzmbpc

词典版和通用版大体相同,大家拷贝上面的更换一下请求的url即可。

文本翻译-图片翻译

图片翻译api文档:https://cloud.baidu.com/doc/mt/s/mki483xpu

这里就不贴代码了,大家点击api文档参照试试,自己做出来乐趣更高哦。

总结

看到这里就介绍了,是不是感觉很简单,就注册一个百度云平台的账号,创建相关的api key应用,

然后对照开发文档进行编写测试,放在项目中很容易移植,快去试试吧。

以上就是c#基于百度ai实现机器翻译功能的详细内容,更多关于c#机器翻译的资料请关注其它相关文章!