C# Stream 和 byte[] 之間的轉換
一. 二進制轉換成圖片
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;
}
以上是C# Stream 和 byte[] 之間的轉換的全部內容,在雲棲社區的博客、問答、公眾號、人物、課程等欄目也有C# Stream 和 byte[] 之間的轉換的相關內容,歡迎繼續使用右上角搜索按鈕進行搜索c# ,以便於您獲取更多的相關知識。
上一篇 1 2 3 4 下一篇相關文章
- C# Stream 和 byte[] 之間的轉換_C#教程
- Java和C#輸入輸出流的方法(詳解)_java
- 用C#編寫一個抓網頁的應用程序
- asp.net C#時區轉換二個實例
- ASP.NET常用數據加密和解密方法(C#)
- C#中Byte[]和String之間轉換的方法_C#教程
- C#加密解密字符串方法
- C# 字符串string和內存流MemoryStream及比特數組byte[]之間相互轉換_C#教程
- asp.net(c#)實現從sqlserver存取二進制圖片的代碼_實用技巧
- asp.net 上傳文件保存到數據庫的方法( C#)
阿裏雲免費套餐 40+雲計算產品,6個月免費體驗 立即免費體驗
新用戶大禮包! 現在註冊,免費體驗40+雲產品,及域名優惠! 立即註冊
C# Stream 和 byte[] 之間的轉換