博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C# http post 地址
阅读量:6788 次
发布时间:2019-06-26

本文共 764 字,大约阅读时间需要 2 分钟。

        public static string PostData(string p_strUrl, string p_strData)
        {
            Encoding dataEncode;
            dataEncode = System.Text.Encoding.UTF8;
            byte[] byteArray = dataEncode.GetBytes(p_strData); //转化
            HttpWebRequest http = (HttpWebRequest)WebRequest.Create(p_strUrl);
            http.Method = "POST";
            http.ContentType = "application/x-www-form-urlencoded";
            http.ContentLength = byteArray.Length;
            Stream newStream = http.GetRequestStream();
            newStream.Write(byteArray, 0, byteArray.Length);//写入参数
            newStream.Close();
            HttpWebResponse response = (HttpWebResponse)http.GetResponse();
            StreamReader sr = new StreamReader(response.GetResponseStream(), Encoding.UTF8);
            string strRec = sr.ReadToEnd();
            sr.Close();
            response.Close();
            return strRec;
        }

转载于:https://www.cnblogs.com/xmyy/articles/2804395.html

你可能感兴趣的文章
android studio3 logcat无日志的问题
查看>>
我的友情链接
查看>>
tinyxml使用
查看>>
mariadb
查看>>
iOS 时间与日期处理
查看>>
Linux中yum网络服务器与本地服务器的安装
查看>>
[2013.12.28更新:构建教程,支持CB2、CT] 构建自己的Debian Linux
查看>>
flume+kafka+storm运行实例
查看>>
mysql show processlist分析
查看>>
Juniper NetScreen MIP转换
查看>>
巧妙安装各种Windows操作系统
查看>>
我的友情链接
查看>>
近期搜集的云应用和云计算云开发平台精选
查看>>
ant入门
查看>>
hibernate mappedBy
查看>>
HCNP学习笔记之OSPF协议原理及配置7-OSPF区间路由
查看>>
android语音识别技术
查看>>
11个 常见UI/UX设计师调查问卷分析
查看>>
网络知识必备关于TCP/IP 安全问题转载
查看>>
第一个“服务器”
查看>>