C# Stream 与 byte[]、文件的转换

发布时间:2020-07-29 06:56:22 作者:胡雨生
来源:网络 阅读:386

/* - - - - - - - - - - - - - - - - - - - - - - - - 
* Stream 和 byte[] 之间的转换 
* - - - - - - - - - - - - - - - - - - - - - - - 
*/ 
/// <summary> 
/// 将 Stream 转成 byte[] 
/// </summary> 
public byte[] StreamToBytes(Stream stream) 

    byte[] bytes = new byte[stream.Length]; 
    stream.Read(bytes, 0, bytes.Length); 
    // 设置当前流的位置为流的开始 
    stream.Seek(0, SeekOrigin.Begin); 
    return bytes; 

/// <summary> 
/// 将 byte[] 转成 Stream 
/// </summary> 
public Stream BytesToStream(byte[] bytes) 

Stream stream = new MemoryStream(bytes); 
    return stream; 


/* - - - - - - - - - - - - - - - - - - - - - - - - 
* Stream 和 文件之间的转换 
* - - - - - - - - - - - - - - - - - - - - - - - 
*/ 
/// <summary> 
/// 将 Stream 写入文件 
/// </summary> 
public void StreamToFile(Stream stream,string fileName) 

    // 把 Stream 转换成 byte[] 
    byte[] bytes = new byte[stream.Length]; 
    stream.Read(bytes, 0, bytes.Length); 
    // 设置当前流的位置为流的开始 
    stream.Seek(0, SeekOrigin.Begin); 
    // 把 byte[] 写入文件 
    FileStream fs = new FileStream(fileName, FileMode.Create); 
    BinaryWriter bw = new BinaryWriter(fs); 
    bw.Write(bytes); 
    bw.Close(); 
    fs.Close(); 

/// <summary> 
/// 从文件读取 Stream 
/// </summary> 
public Stream FileToStream(string fileName) 

    // 打开文件 
    FileStream fileStream = new FileStream(fileName, FileMode.Open, FileAccess.Read, FileShare.Read); 
    // 读取文件的 byte[] 
    byte[] bytes = new byte[fileStream.Length]; 
    fileStream.Read(bytes, 0, bytes.Length); 
    fileStream.Close(); 
    // 把 byte[] 转换成 Stream 
    Stream stream = new MemoryStream(bytes); 
    return stream; 

推荐阅读:
  1. 如何在Java 8项目中利用Stream.distinct() 方法对列表进行去重
  2. Stream在PHP中的作用是什么

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

stream st

上一篇:基于 K8S 构建数据中心操作系统

下一篇:php练习-四则计算器

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》