写在前面
最近一直在研究sharepoint的文档库,在上传文件到文档库的过程中,需要模拟post请求,也查找了几种模拟方式,webclient算是比较简单的方式。
一个例子
这里写一个简单接受post请求的aspx页面,代码如下:
namespace Wolfy.UploadDemo
{
public partial class Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
string fileName = Request.QueryString["url"];
if (!string.IsNullOrEmpty(fileName))
{
Stream st = Request.InputStream;
string fileSavePath = Request.MapPath("~/upload/") + fileName;
byte[] buffer=new byte[st.Length];
st.Read(buffer, , buffer.Length);
if (!File.Exists(fileSavePath))
{
File.WriteAllBytes(fileSavePath, buffer);
} }
}
}
}
这里使用QueryString接收url参数,使用请求的输入流接受文件的数据。
然后,使用webclient写一个模拟请求的客户端,代码如下:
namespace Wolfy.UploadExe
{
class Program
{
static void Main(string[] args)
{
WebClient client = new WebClient();
client.QueryString.Add("url", "1.png"); using (FileStream fs = new FileStream("1.png", FileMode.Open))
{
byte[] buffer = new byte[fs.Length];
fs.Read(buffer, , buffer.Length);
client.UploadData("http://localhost:15887/Default.aspx", buffer);
} }
}
}
调试状态运行aspx,然后运行exe控制台程序
如果有验证信息,可以加上这样一句话:
client.Credentials = new NetworkCredential("用户名", "密码", "域");
总结
由于目前做的项目,移动端app不能提供用户名和密码,必须使用证书进行认证,发现webclient无法支持。就采用HttpWebRequest类进行模拟了。关于它的使用是下文了。