Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

C # Stream and byte [], file conversion

2025-01-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Network Security >

Share

Shulou(Shulou.com)06/01 Report--

/* - - - - - - - - - - - - - - - - - - - - - - - -

* Conversion between Stream and byte[]

* - - - - - - - - - - - - - - - - - - - - - - - */

///

///convert Stream to byte[]

///

public byte[] StreamToBytes(Stream stream)

{

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

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

//Set the current stream position to the start of the stream

stream.Seek(0, SeekOrigin.Begin);

return bytes;

}

///

///convert byte[] to Stream

///

public Stream BytesToStream(byte[] bytes)

{

Stream stream = new MemoryStream(bytes);

return stream;

}

/* - - - - - - - - - - - - - - - - - - - - - - - -

* Conversion between Stream and File

* - - - - - - - - - - - - - - - - - - - - - - - */

///

///Write Stream to File

///

public void StreamToFile(Stream stream,string fileName)

{

//convert Stream to byte[]

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

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

//Set the current stream position to the start of the stream

stream.Seek(0, SeekOrigin.Begin);

//write byte[] to file

FileStream fs = new FileStream(fileName, FileMode.Create);

BinaryWriter bw = new BinaryWriter(fs);

bw.Write(bytes);

bw.Close();

fs.Close();

}

///

///Read Stream from File

///

public Stream FileToStream(string fileName)

{

//Open file

FileStream fileStream = new FileStream(fileName, FileMode.Open, FileAccess.Read, FileShare.Read);

//read byte of file []

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

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

fileStream.Close();

//convert byte[] to Stream

Stream stream = new MemoryStream(bytes);

return stream;

}

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Network Security

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report