小男孩‘自慰网亚洲一区二区,亚洲一级在线播放毛片,亚洲中文字幕av每天更新,黄aⅴ永久免费无码,91成人午夜在线精品,色网站免费在线观看,亚洲欧洲wwwww在线观看

分享

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

 abin30 2019-03-19
復(fù)制代碼
一. 二進(jìn)制轉(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)前流的位置為流的開(kāi)始 

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 寫(xiě)入文件

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)前流的位置為流的開(kāi)始 

stream.Seek(0, SeekOrigin.Begin); 

// 把 byte[] 寫(xiě)入文件 

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) 

{ 

// 打開(kāi)文件 

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ù)制代碼

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

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶 評(píng)論公約

    類(lèi)似文章 更多