zoukankan      html  css  js  c++  java
  • C# 将文件转化成byte[]数组

    /// <summary>
    /// 将文件转换成byte[] 数组
    /// </summary>
    /// <param name="fileUrl">文件路径文件名称</param>
    /// <returns>byte[]</returns>
    protected byte[] GetFileData(string fileUrl)
    {
      FileStream fs = new FileStream(fileUrl, FileMode.Open, FileAccess.Read);
      try
      {
        byte[] buffur = new byte[fs.Length];
        fs.Read(buffur, 0, (int)fs.Length);
    
        return buffur;
      }
      catch (Exception ex)
      {
        //MessageBoxHelper.ShowPrompt(ex.Message);
        return null;
      }
      finally
      {
        if (fs != null)
        {
    
          //关闭资源
          fs.Close();
        }
      }
    }
    
    
    /// <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;
      }
    }
  • 相关阅读:
    【转载】Linux的进程间通信-信号量
    【转载】高性能数据库连接池的内幕
    【转载】我是一块硬盘(下)
    【转载】我是一块硬盘(上)
    69. Sqrt(x)
    68. Text Justification
    67. Add Binary
    66. Plus One
    65. Valid Number
    64. Minimum Path Sum
  • 原文地址:https://www.cnblogs.com/ShaYeBlog/p/5764735.html
Copyright © 2011-2022 走看看