zoukankan      html  css  js  c++  java
  • 将文件转换成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;
    }
    }

  • 相关阅读:
    希尔排序
    Java内存区域与内存溢出异常
    插入排序
    选择排序
    冒泡排序
    专利申请笔记
    Python基础指北
    mini web
    linux i/o multiplexing
    Python decorator module
  • 原文地址:https://www.cnblogs.com/ning-xiaowo/p/13572619.html
Copyright © 2011-2022 走看看