C#文件和字节流的转换方法


1、读取文件,并转换为字节流
FileStream fs = new FileStream(filename,FileMode.Open,FileAccess.Read);
byte[] infbytes = new byte[(int)fs.Length];
fs.Read(infbytes, 0, infbytes.Length);
fs.Close();
return infbytes;
2、将字节流写入文件 FileStream fs = new FileStream("D:\inf.dlv",FileMode.Create,FileAccess.Write); fs.Write(infbytes, 0, inf.Length); fs.Close();

  

3.将字节流转换成文件流
Stream stream = new MemoryStream(bytes); 
return stream; 

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM