码迷,mamicode.com
首页 > Windows程序 > 详细

C# byte[]保存成文件

时间:2016-11-24 07:04:51      阅读:269      评论:0      收藏:0      [点我收藏+]

标签:create   byte   pdf   nbsp   文件   path   class   new   dispose   

string path = Server.MapPath(@"\a.pdf");
            FileStream fs = new FileStream(path, FileMode.Create);
            fs.Write(buffer, 0, buffer.Length);
            fs.Dispose();

 

C# byte[]保存成文件

标签:create   byte   pdf   nbsp   文件   path   class   new   dispose   

原文地址:http://www.cnblogs.com/testsec/p/6095760.html

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