将文件转换成byte[]数组
Posted xsj1989
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将文件转换成byte[]数组相关的知识,希望对你有一定的参考价值。
/// <summary> /// 将文件转换成byte[] 数组 /// </summary> /// <param name="fileUrl">文件路径文件名称</param> /// <returns>byte[]</returns> protected byte[] AuthGetFileData(string fileUrl) { using (FileStream fs = new FileStream(fileUrl, FileMode.OpenOrCreate, FileAccess.ReadWrite)) { byte[] buffur = new byte[fs.Length]; using (BinaryWriter bw = new BinaryWriter(fs)) { bw.Write(buffur); bw.Close(); } return buffur; } }
以上是关于将文件转换成byte[]数组的主要内容,如果未能解决你的问题,请参考以下文章