日韩黑丝制服一区视频播放|日韩欧美人妻丝袜视频在线观看|九九影院一级蜜桃|亚洲中文在线导航|青草草视频在线观看|婷婷五月色伊人网站|日本一区二区在线|国产AV一二三四区毛片|正在播放久草视频|亚洲色图精品一区

分享

C# Stream 和 byte[] 之間的轉(zhuǎn)換(文件流的應(yīng)用)

 abin30 2019-03-19
復(fù)制代碼
一. 二進制轉(zhuǎn)換成圖片
MemoryStream ms = new MemoryStream(bytes);

ms.Position = 0;

Image img = Image.FromStream(ms);

ms.Close();

this.pictureBox1.Image

二. C#中byte[]與string的轉(zhuǎn)換代碼

1、System.Text.UnicodeEncoding converter = new System.Text.UnicodeEncoding();
  byte[] inputBytes =converter.GetBytes(inputString);
  string inputString = converter.GetString(inputBytes);

2string 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[] 之間的轉(zhuǎn)換

/// 將 Stream 轉(zhuǎn)成 byte[]

public byte[] StreamToBytes(Stream stream) 

{

byte[] bytes = new byte[stream.Length]; 

stream.Read(bytes, 0, bytes.Length); 

// 設(shè)置當(dāng)前流的位置為流的開始 

stream.Seek(0, SeekOrigin.Begin); 

return bytes; 

}

/// 將 byte[] 轉(zhuǎn)成 Stream

public Stream BytesToStream(byte[] bytes) 

{ 

Stream stream = new MemoryStream(bytes); 

return stream; 

}

四. Stream 和 文件之間的轉(zhuǎn)換

將 Stream 寫入文件

public void StreamToFile(Stream stream,string fileName) 

{ 

// 把 Stream 轉(zhuǎn)換成 byte[] 

byte[] bytes = new byte[stream.Length]; 

stream.Read(bytes, 0, bytes.Length); 

// 設(shè)置當(dāng)前流的位置為流的開始 

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[] 轉(zhuǎn)換成 Stream 

Stream stream = new MemoryStream(bytes); 

return stream;

}
復(fù)制代碼

    本站是提供個人知識管理的網(wǎng)絡(luò)存儲空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點。請注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購買等信息,謹防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點擊一鍵舉報。
    轉(zhuǎn)藏 分享 獻花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多