文件流生成文件

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

 

以上是关于文件流生成文件的主要内容,如果未能解决你的问题,请参考以下文章

如何用vs2008流生成excel文件

java中把列表用流生成了Excel表格中的时间显示问题

spring mvc 读取数据库的二进制流生成excel文件

使用流生成地图时忽略重复项

Jetty服务器关闭流生成500错误

有一些方法可以为 spring 集成 dsl 流生成图表吗?