zoukankan      html  css  js  c++  java
  • HTTP Post方法

    private bool Send(string postXML)
        {
            byte[] buffer = System.Text.Encoding.Unicode.GetBytes(postXML);

            System.Net.HttpWebRequest req = (HttpWebRequest)WebRequest.Create(SendUrl);

            req.Method = "POST";
            req.ContentType = "application/x-www-form-urlencoded";
            req.ContentLength = buffer.Length;
            try
            {
                Stream reqst = req.GetRequestStream();
                reqst.Write(buffer, 0, buffer.Length);
                reqst.Flush();
                reqst.Close();
            }
            catch
            {
                return false;
               // Page.RegisterStartupScript("", "<script>alert('发送失败请检查网络');</script>");
            }

            try
            {
                HttpWebResponse res = (HttpWebResponse)req.GetResponse();
                Stream resst = res.GetResponseStream();
                StreamReader sr = new StreamReader(resst, System.Text.Encoding.GetEncoding("gb2312"),true);
                //Console.WriteLine("\nGrabbing HTTP response:\n");
                string resStr = sr.ReadToEnd();
                sr.Close();
                resst.Close();

                //返回信息分析
                bool isSucceed = SnalyseHttpResponse(resStr);

                return isSucceed;
            }
            catch
            {
                //连接失败错误
                //Page.RegisterStartupScript("", "<script>alert('网络连接出错');</script>");
                return false;
            }
        }

  • 相关阅读:
    C#定时执行任务
    C#判断数据库是否可连接(PING)
    Excel之导入数据
    JQuery之杂项方法$.grep()
    .Net EF 之代码生成策略
    平台与WeLink深度融合技术汇总
    Host is not allowed to connect to this MySQL
    excel中过长的数字怎么筛选重复项
    oracle 函数大全
    WinXP添加TLS1.1、TLS1.2支持
  • 原文地址:https://www.cnblogs.com/online/p/1035098.html
Copyright © 2011-2022 走看看