当前位置:   article > 正文

Flask使用------python算法后端连接c#Winform前端_python后端前端用c#

python后端前端用c#

Flask使用------python算法后端连接c#Winform前端

前段时间,一直在纠结怎么将Ubuntu系统的python算法和Windows系统的C#连接起来,后面在经过搜了很多资料后,发现了Flask这个神奇的东西。学了几天,做出了自己需要的东西,就没有继续深入学习下去了,毕竟现在没有很多时间去学习。等暑期可以深入学一下,还挺有意思的。

我在网上搜集了一些有关python和C#用Flask连接的例子,但是没有我想要的,索性自己边看边捣鼓也差不多捣鼓出来了。就把代码贴到这里了。

前提:我的python算法需要传出的是图片,其传入的有时是图片,有时是string(这里只放了前端代码,后端代码在之前的博客里面贴出来啦!)

前端代码:
 		/// <summary>
        ///  通过网络地址和端口访问数据:image型--image型
        /// </summary>
        /// <param name="Url">网络地址</param>
        /// <param name="jsonParas">json参数</param>
        /// <returns></returns>
        public Image RequestsPostImage(string Url, byte[] jsonParas)
        {
            string postContent = "";
            string strUrl = Url;
            Image img = null;

            //创建一个HTTP请求
            HttpWebRequest request = (HttpWebRequest)WebRequest.Create(strUrl);
            //Post请求方式
            request.Method = "POST";
            //内容类型
            request.ContentType = "application/json";

            //设置参数,并进行URL编码
            byte[] payLoad = jsonParas;
  
            //设置请求的ContentLength
            request.ContentLength = payLoad.Length;

            //发送请求
            Stream writer;
            try
            {
                //获取用于写入请求数据的Stream对象
                writer = request.GetRequestStream();
            }
            catch (Exception)
            {
                writer = null;
                MessageBox.Show("连接服务器失败");
                return null;
            }
            //将请求参数写入流
            writer.Write(payLoad, 0, payLoad.Length);
            //关闭请求流
            writer.Close();

            HttpWebResponse response;
            try
            {
                //获得响应流
                response = (HttpWebResponse)request.GetResponse();
            }
            catch (WebException ex)
            {
                response = ex.Response as HttpWebResponse;
                postContent = "default: The response is null." + "Exception: " + ex.Message;
                MessageBox.Show(postContent);
            }
            if (response != null)
            {
                try
                {
                    Stream s = response.GetResponseStream();
                    img = Image.FromStream(s);
                }
                catch (Exception e)
                {
                    postContent = "default: The data stream is not readable." + "\r\n" + e.Message;
                    MessageBox.Show(postContent);
                }
            }
            //返回JSON数据
            return img;
        }

        /// <summary>
        ///  通过网络地址和端口访问数据:string型--image型
        /// </summary>
        /// <param name="Url">网络地址</param>
        /// <param name="jsonParas">json参数</param>
        /// <returns></returns>
        public Image RequestsPostString(string Url, string jsonParas)
        {
            string postContent = "";
            string strUrl = Url;
            Image img = null;

            //创建一个HTTP请求
            HttpWebRequest request = (HttpWebRequest)WebRequest.Create(strUrl);
            //Post请求方式
            request.Method = "POST";
            //内容类型
            request.ContentType = "application/json";

            //设置参数,并进行URL编码
            string paraUrlCoded = jsonParas;
            byte[] payLoad;
            //将json字符串转化为字节
            payLoad = System.Text.Encoding.UTF8.GetBytes(paraUrlCoded);
            //设置请求的ContentLength
            request.ContentLength = payLoad.Length;

            //发送请求
            Stream writer;
            try
            {
                //获取用于写入请求数据的Stream对象
                writer = request.GetRequestStream();
            }
            catch (Exception)
            {
                writer = null;
                MessageBox.Show("连接服务器失败");
                return null;
            }
            //将请求参数写入流
            writer.Write(payLoad, 0, payLoad.Length);
            //关闭请求流
            writer.Close();

            HttpWebResponse response;
            try
            {
                //获得响应流
                response = (HttpWebResponse)request.GetResponse();
            }
            catch (WebException ex)
            {
                response = ex.Response as HttpWebResponse;
                postContent = "default: The response is null." + "Exception: " + ex.Message;
                MessageBox.Show(postContent);
            }
            if (response != null)
            {
                try
                {
                    Stream s = response.GetResponseStream();
                    img = Image.FromStream(s);
                }
                catch (Exception e)
                {
                    postContent = "default: The data stream is not readable." + "\r\n" + e.Message;
                    MessageBox.Show(postContent);
                }
            }
            //返回JSON数据
            return img;
        }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号