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;
            }
        }

  • 相关阅读:
    组件映射
    联合主键关联
    一对一单向双向主键关联
    7函数
    forEach与map
    3运算符与表达式
    作用域声明提升
    php程序设计 1,2章节
    angularJs(3)过滤器
    angularJs(1)指令篇
  • 原文地址:https://www.cnblogs.com/online/p/1035098.html
Copyright © 2011-2022 走看看