文件流生成文件
Posted 刘邦汤
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了文件流生成文件相关的知识,希望对你有一定的参考价值。
1.
HttpWebRequest myReq = (HttpWebRequest)WebRequest.Create(url);
WebResponse myResp = myReq.GetResponse();
byte[] b = null;
using( Stream stream = myResp.GetResponseStream() )
using( MemoryStream ms = new MemoryStream() )
{
int count = 0;
do
{
byte[] buf = new byte[1024];
count = stream.Read(buf, 0, 1024);
ms.Write(buf, 0, count);
} while(stream.CanRead && count > 0);
b = ms.ToArray();
}
2.
using (FileStream fs = new FileStream(filePath, FileMode.Create))
{
fs.Write(b, 0, b.Length);
}
http://stackoverflow.com/questions/3434007/error-this-stream-does-not-support-seek-operations-in-c-sharp
以上是关于文件流生成文件的主要内容,如果未能解决你的问题,请参考以下文章