C#文件和字节流的转换方法
程序员文章站
2024-01-22 08:56:16
本文实例讲述了c#文件和字节流的转换方法。分享给大家供大家参考。具体实现方法如下:
1、读取文件,并转换为字节流
filestream fs = new fil...
本文实例讲述了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();
希望本文所述对大家的c#程序设计有所帮助。
上一篇: 分页工具类PageResult
下一篇: php下的权限算法的实现