将文件转换成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[]数组的主要内容,如果未能解决你的问题,请参考以下文章

c#怎么把byte数组转换成图像

base64的byte[]如何转换成图片

如何将base64位的字节数组转换成图片并显示

VB.net 如何将数据转换为位图(Bitmap)所需要的byte()数组?急!!!!

java中如何把一个文件转化为byte数组

java怎么将string转换成byte数组