博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C# Stream 和 byte[] 之间的转换
阅读量:5765 次
发布时间:2019-06-18

本文共 1721 字,大约阅读时间需要 5 分钟。

一. 二进制转换成图片

MemoryStream ms = new MemoryStream(bytes);
ms.Position = 0;
Image img = Image.FromStream(ms);
ms.Close();
this.pictureBox1.Image

二. C#中byte[]与string的转换代码

1、System.Text.UnicodeEncoding converter = new System.Text.UnicodeEncoding();

  byte[] inputBytes =converter.GetBytes(inputString);
  string inputString = converter.GetString(inputBytes);

2、string inputString = System.Convert.ToBase64String(inputBytes);

  byte[] inputBytes = System.Convert.FromBase64String(inputString);
FileStream fileStream = new FileStream(fileName, FileMode.Open, FileAccess.Read, FileShare.Read);

三. C# Stream 和 byte[] 之间的转换

/// 将 Stream 转成 byte[]

public byte[] StreamToBytes(Stream stream)

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

/// 将 byte[] 转成 Stream

public Stream BytesToStream(byte[] bytes)

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

四. Stream 和 文件之间的转换

将 Stream 写入文件

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();
}

五. 从文件读取 Stream

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;
}

转载地址:http://ndgkx.baihongyu.com/

你可能感兴趣的文章
中英文词频
查看>>
黎活明8天快速掌握android视频教程--20_采用ContentProvider对外共享数据
查看>>
disruptor架构三 使用场景更加复杂的场景
查看>>
excel wps access mysql数据表格的查询之路
查看>>
android 短信群发
查看>>
junit单元测试注意的问题
查看>>
vue证明题四,使用组件
查看>>
HDU-4405 Aeroplane chess 期望DP
查看>>
剪贴板监视保存器
查看>>
支付宝和微信支付程序-附源码下载
查看>>
Web模板引擎—Mustache
查看>>
算法学习(一):实现六种快速排序
查看>>
由于无法创建应用程序域,因此未能执行请求。错误: 0x80070002 系统找不到指定的文件...
查看>>
栈 和 队列
查看>>
Server Tomcat v8.0 Server at localhost was unable to start within 45 seconds
查看>>
HTML5的全局属性
查看>>
CCPC E Problem Buyer
查看>>
12171:Sculpture
查看>>
用ng-style修改元素的color, size等
查看>>
C语言strtok_s函数
查看>>