博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
模拟发送POST或Get请求
阅读量:6641 次
发布时间:2019-06-25

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

UTF8Encoding encoding = new UTF8Encoding();            byte[] data = encoding.GetBytes(requestDataXml.ToString());            HttpWebRequest myRequest = (HttpWebRequest)WebRequest.Create(url);            myRequest.Method = ;            myRequest.ContentType = "application/x-www-form-urlencoded";            myRequest.ContentLength = data.Length;            Stream newStream = myRequest.GetRequestStream();            // 发送数据
newStream.Write(data, 0, data.Length);            newStream.Close();            // 返回数据            HttpWebResponse myResponse = (HttpWebResponse)myRequest.GetResponse();            StreamReader reader = new StreamReader(myResponse.GetResponseStream(), Encoding.UTF8);            string content = reader.ReadToEnd();            XElement xe = XElement.Parse(content);            return xe;

转载地址:http://fkovo.baihongyu.com/

你可能感兴趣的文章
获取SQL执行计划的常见几种方法
查看>>
自定义数据库连接工具类
查看>>
在64位Win7环境+64位JDK下,运行64位Eclipse,提示“Failed to load the JNI shared library”错误,提示jvm.dll不对...
查看>>
永中参加第八届南京软博会 国产基础办公软件厂商彰显实力(转)
查看>>
CentOS7,访问CD-ROM中的内容
查看>>
【过程改进】10分钟进阶Nuget
查看>>
改善SQL Server内存管理
查看>>
ubutn中开启ssh服务以及开启ftp服务
查看>>
我的Logo设计简史
查看>>
Linux系统服务器 GNU Bash 环境变量远程命令执行漏洞修复命令
查看>>
iphone-common-codes-ccteam源代码 CCAutoDisappearView.h
查看>>
Python字符串格式化
查看>>
map的用法
查看>>
安卓 WebView加载本地图片时居中显示
查看>>
UITableView 优化总结
查看>>
信号量同步线程
查看>>
消息队列NetMQ 原理分析2-IO线程和完成端口
查看>>
NUC1333 Knight Moves【DFS】
查看>>
B00014 C++实现的AC自动机
查看>>
687C: The values you can make
查看>>