Logo

C# byte[]和文件FileStream相互转化

photo

2022年06月01日

using System.IO;

//读filename到byte[]

        
private byte[] ReadFile(string fileName)

        
{

            FileStream pFileStream 
= null;

            
byte[] pReadByte = new byte[0];

            
try

            
{

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

                BinaryReader r 
= new BinaryReader(pFileStream);

                r.BaseStream.Seek(
0, SeekOrigin.Begin);    //将文件指针设置到文件开

                pReadByte 
= r.ReadBytes((int)r.BaseStream.Length);

                
return pReadByte;

            }


            
catch

            
{

                
return pReadByte;

            }


            
finally

            
{

                
if (pFileStream != null)

                    pFileStream.Close();

            }


        }


        
//写byte[]到fileName

        
private bool writeFile(byte[] pReadByte, string fileName)

        
{

            FileStream pFileStream 
= null;

 

            
try

            
{

                pFileStream 
= new FileStream(fileName, FileMode.OpenOrCreate);

                pFileStream.Write(pReadByte, 
0, pReadByte.Length);

 

            }


            
catch

            
{

                
return false;

            }


            
finally

            
{

                
if (pFileStream != null)

                    pFileStream.Close();

            }


            
return true;

        }


         测试

        
private void button6_Click(object sender, EventArgs e)

        
{

             
//by 闫磊 Email:Landgis@126.com,yanleigis@21cn.com 2007.11.23

 

byte[] b = ReadFile(@”c:\u.jpg);

            
if (writeFile(b, @”c:\u1.jpg))

            
{

                MessageBox.Show(
成功);

            }


            
else { MessageBox.Show(失败); }

        }


橙子主题打折出售

其实我不卖,主要是这里是放广告的,所以就放了一个
毕竟主题都没做完,卖了也是坑.

购买它
所有附件
本文为原创文章,请注意保留出处!

热门文章

Windows Server IIS+ARR反向代理(配置反向代理服务器) 1.概念说明:反向代理反向代理服务器位于用户与目标服务器之间,但是对于用户而言,反向代理服务器就相...WindowsServerIIS+ARR反向代理(配置反向代理服务器) 作者:Pastore Antonio
1618 浏览量
ffmpeg 生成水印 1:先要配置ffmpeg的滤镜:参考:https://www.jianshu.com/p/9d24...ffmpeg生成水印 作者:Pastore Antonio
1527 浏览量
Navicat Premium 12.0.22 安装与破解 一、安装  NavicatPremium12.0.22的下载链接:https://pan.ba...NavicatPremium12.0.22安装与破解 作者:Pastore Antonio
1472 浏览量
谷歌浏览器扩展程序报错 The message port closed before a response was received. 问题描述ChromeExtension报错:Uncheckedruntime.lastEr...谷歌浏览器扩展程序报错Themessageportclosedbeforearesponsewasreceived. 作者:Pastore Antonio
1463 浏览量
天地光阴,唯深情可依 如果光阴把一切席卷而去,最后剩下的,一定是一抹幽兰。如果爱情把一切席卷而去,最后留下的,也定是带着蓝色记忆的最初的心动。 作者:Pastore Antonio
1460 浏览量