同步请求=====================================================================================
byte[] data = System.Text.Encoding.UTF8.GetBytes("data=Hello,World~");//组建要提交的数据
//请求报文的参数设置
request.Method = "post";
request.ContentType = "application/x-www-form-urlencoded";//post请求的时候,必须加上这行代码,不然数据无法提交到目标url
using (Stream requestStream = request.GetRequestStream())//请求流;有数据需要传递给目标url时候,需要把数据放在此流中
{
requestStream.Write(data, 0, data.Length);
}//get类型的请求,不能有【请求流】get请求如果有参数,把参数 拼接到 url中 .create()
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
Stream responseStream = response.GetResponseStream();//返回流
StreamReader sr = new StreamReader(responseStream,Encoding.UTF8);
string result = sr.ReadToEnd();//读取流,得到String
【从服务器获取cookie】
byte[] data = System.Text.Encoding.UTF8.GetBytes("data=Hello,World~");//组建要提交的数据
//请求报文的参数设置
request.Method = "post";
request.ContentType = "application/x-www-form-urlencoded";//post请求的时候,必须加上这行代码,不然数据无法提交到目标url
request.CookieContainer = new CookieContainer();//请求地址,获取cookie 如 登录时的cookie
using (Stream requestStream = request.GetRequestStream())//请求流;有数据需要传递给目标url时候,需要把数据放在此流中
{
requestStream.Write(data, 0, data.Length);
}
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
Stream responseStream = response.GetResponseStream();//返回流
StreamReader sr = new StreamReader(responseStream,Encoding.UTF8);
string result = sr.ReadToEnd();//读取流,得到String
Cookie ck = response.Cookies[0];
if (ck!=null)
{
Response.Write(ck.Value);
}
【组建cookie提交个服务器】
byte[] data = System.Text.Encoding.UTF8.GetBytes("data=Hello,World~");//组建要提交的数据
//请求报文的参数设置
request.Method = "post";
request.ContentType = "application/x-www-form-urlencoded";//post请求的时候,必须加上这行代码,不然数据无法提交到目标url
request.CookieContainer = new CookieContainer();//使用cookie就需要加上此行代码
Cookie c = new Cookie("name","zs");
c.Domain = "localhost";//不能就加http 和端口号 只能放域名
request.CookieContainer.Add(c);
using (Stream requestStream = request.GetRequestStream())//请求流;有数据需要传递给目标url时候,需要把数据放在此流中
{
requestStream.Write(data, 0, data.Length);
}
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
Stream responseStream = response.GetResponseStream();//返回流
StreamReader sr = new StreamReader(responseStream,Encoding.UTF8);
string result = sr.ReadToEnd();//读取流,得到String
异步请求======================================================================================
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace AsynHttpWebRequest
{
public partial class Index : System.Web.UI.Page
{
public string TestStr;
protected void Page_Load(object sender, EventArgs e)
{
DoAsynVisist();
TestStr = "外";
}
private void DoAsynVisist()
{
string data = "data=Hello World~";//模拟要传递的数据
try
{
request.Method = "post";
request.ContentType = "application/x-www-form-urlencoded";//post请求的时候,必须加上这行代码,不然数据无法提交到目标url
List<object> saveData = new List<object>() { data, request };
request.BeginGetRequestStream(GetRequestStreamCallBack, saveData);//开始异步
}
catch
{//异常处理
}
}
private void GetRequestStreamCallBack(IAsyncResult ar)
{
List<object> saveData = ar.AsyncState as List<object>;//转换要传递的data,和Request对象
string data = saveData[0] as string;//要传递的数据
byte[] byteData = System.Text.Encoding.UTF8.GetBytes(data);
HttpWebRequest request = (HttpWebRequest)saveData[1];
Stream requestStream = request.EndGetRequestStream(ar);//请求流
requestStream.Write(byteData, 0, byteData.Length);
requestStream.Close();
request.BeginGetResponse(GetResponseCallBack,request);//一旦使用异步处理,所有的操作方法都要配套,像这里使用BeginGetResponse而不是直接GetResponse
}
private void GetResponseCallBack(IAsyncResult ar)
{
HttpWebRequest request = ar.AsyncState as HttpWebRequest;
HttpWebResponse response = (HttpWebResponse)request.EndGetResponse(ar);
Stream streamResponse = response.GetResponseStream();//返回流
StreamReader streamRead = new StreamReader(streamResponse);
string responseString = streamRead.ReadToEnd();//得到结果
//模拟处理
string filePath = AppDomain.CurrentDomain.BaseDirectory + "/Result";//System.Web.HttpContext.Current.Server.MapPath("/Result"); //HttpContext.Current.Request.MapPath("/Result");//异步这里为null
TestStr = "内";
File.WriteAllText(filePath + "\\" + "1.txt", responseString + TestStr);
streamResponse.Close();
streamRead.Close();
response.Close();
}
}
}
- 利用HttpWebRequest实现实体对象的上传
一 简介 HttpWebRequest和HttpWebResponse类是用于发送和接收HTTP数据的最好选择.它们支持一系列有用的属性.这两个类位 于System.Net命名空间,默认情况下这个类对 ...
- C#通过WebClient/HttpWebRequest实现http的post/get方法
C#通过WebClient/HttpWebRequest实现http的post/get方法 http://www.cnblogs.com/shadowtale/p/3372735.html
- C# HttpWebRequest获取COOKIES
C# HttpWebRequest获取COOKIES byte[] bytes = Encoding.Default.GetBytes(_post); CookieContainer myCookie ...
- 在使用 HttpWebRequest Post数据时候返回 400错误
笔者有一个项目中用到了上传zip并解压的功能.开始觉得很简单,因为之前曾经做过之类的上传文件的功能,所以并不为意,于是使用copy大法.正如你所料,如果一切很正常的能运行的话就不会有这篇笔记了. 整个 ...
- .net学习笔记----HttpRequest,WebRequest,HttpWebRequest区别
WebRequest是一个虚类/基类,HttpWebRequest是WebRequest的具体实现 HttpRequest类的对象用于服务器端,获取客户端传来的请求的信息,包括HTTP报文传送过来的所 ...
- C#使用HttpWebRequest 进行请求,提示 基础连接已经关闭: 发送时发生错误。
本人今天遇到的错误,C#使用HttpWebRequest 进行请求,提示 基础连接已经关闭: 发送时发生错误. 测试了很久,才发现,是安全协议问题,把安全协议加上就可以了
- C# winfrom HttpWebRequest 请求获取html网页信息和提交信息
string result =GetRequest("http://localhost:32163/DuoBao/ajax.aspx", "time=5"); ...
- ASP.NET中使用HttpWebRequest调用WCF
最近项目需要和第三网站进行数据交换,第三方网站基本都是RESTfull形式的API,但是也有的是Web Service,或者.NET里面的WCF.微软鼓励大家使用WCF替代Web Service. W ...
- 【转】asp.net(c#)使用HttpWebRequest附加携带请求参数以post方式模拟上传大文件(以图片为例)到Web服务器端
原文地址:http://docode.top/Article/Detail/10002 目录: 1.Http协议上传文件(以图片为例)请求报文体内容格式 2.完整版HttpWebRequest模拟上传 ...
- .Net(c#)模拟Http请求之HttpWebRequest封装
一.需求: 向某个服务发起请求获取数据,如:爬虫,采集. 二.步骤(HttpWebRequest): 无非在客户端Client(即程序)设置请求报文(如:Method,Content-Type,Age ...
随机推荐
- eclipse导入安卓工程时出现 Invalid project description. overlaps the location of another project提示
eclipse导入工程时出现了如下问题: Invalid project description. /Users/yang/Documents/workspace/BarCodeTest overla ...
- poj1472[模拟题]
Instant Complexity Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 2017 Accepted: 698 ...
- VS操作Sqlite数据库
如果你下载的Sqlite是不带bundle的版本,那还要把这个SQLite.Interop.dll复制到debug执行文件夹下才能执行.
- jQuery 显示加载更多
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8" ...
- JMS - Exceptions
The JMSException JMS defines JMSException as the root class for exceptions thrown by JMS methods. JM ...
- 在Ubuntu系统中解压rar和zip文件的方法
大家在以前的windows系统中会存有很多rar和zip格式的压缩文件,Ubuntu系统默认情况下对这些文件的支持不是很好,如果直接用"归档管理器"打开会提示错误,因此今天跟大家分 ...
- AIDL进程间调用与Binder的简单介绍
Binder是安卓中特有的一种进程间通信(IPC)方式,从Unix发展而来的手段,通信双方必须处理线程同步.内存管理等复杂问题,传统的Socket.匿名通道(Pipe).匿名管道(FIFO).信号量( ...
- python学习day3--python基础
1.python不用声明变量的类型,运行时python自己进行判断 2.尽量不要用“+”去拼接字符串,运行时会每遇到一个“+”就开辟一块内存空间,使用如下方式进行字符串的拼接. msg=''' inf ...
- PHP学习笔记 - 进阶篇(11)
PHP学习笔记 - 进阶篇(11) 数据库操作 PHP支持哪些数据库 PHP通过安装相应的扩展来实现数据库操作,现代应用程序的设计离不开数据库的应用,当前主流的数据库有MsSQL,MySQL,Syba ...
- 【leetcode】5. Longest Palindromic Substring
题目描述: Given a string S, find the longest palindromic substring in S. You may assume that the maximum ...