码迷,mamicode.com
首页 > Web开发 > 详细

.net中文件的上传与接收

时间:2015-01-29 22:19:14      阅读:248      评论:0      收藏:0      [点我收藏+]

标签:

这几天有个项目需要用到文件的操作,复习了一下有关的资料整合一下:

1,将Image对象输出到response输出流中:

//写入到响应流
smallimg.Save(context.Response.OutputStream, System.Drawing.Imaging.ImageFormat.Jpeg);
 //保存到本地
smallimg.Save(context.Request.MapPath(smallimgname));

2,读取和发送字节数组

//将表单中的文件用字节数组的形式发送到制定的url地址中
WebClient wb = new WebClient(); wb.UploadData(urladdress, FileUpload1.FileBytes);

//接收传来的文件
  using (FileStream fs = File.OpenWrite(@"h:\" + id + ext))
      {
        //context.Request.InputStream就是Web服务器wc.UploadData第二个参数的数据流
          context.Request.InputStream.CopyTo(fs);
      }
//保存图片数据 验证码中提取
System.IO.MemoryStream stream = new System.IO.MemoryStream();
image.Save(stream, System.Drawing.Imaging.ImageFormat.Jpeg);
//输出图片流
context.Response.Clear();
context.Response.ContentType = "image/jpeg";
context.Response.BinaryWrite(stream.ToArray());

 

.net中文件的上传与接收

标签:

原文地址:http://www.cnblogs.com/fjj-1515/p/4260889.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!