public class ZipBin { public byte[] bytes; //C#读取压缩文件(将压缩文件转换为二进制 public void GetZipToByte(string inpath) { FileStream fs = new FileStream(inpath, FileMode.Open); bytes = new byte[fs.Length]; int count = Convert.ToInt32(fs.Length); fs.Read(bytes, 0, count); } //C#将二进制转换为压缩文件 public void GetByteToZip(string outpath) { string path = outpath;//压缩文件的地址 File.WriteAllBytes(path, bytes); } }
转载于:https://www.cnblogs.com/aweifly/p/3410865.html
相关文章
- 10-09Python中字符串与字节之间相互转换
- 10-09C# 文件与二进制互转数据库写入读出
- 10-09C#中String 与Color之间的相互转换
- 10-09C# 压缩文件与字节互转
- 10-09WPF(C#)中Bitmap与BitmapImage相互转换
- 10-09c# – SHA-1散列字节数组与文件流
- 10-09C#发送字符串转字节含空格与0x需删去
- 10-09C# LINQ系列:LINQ to DataSet的DataTable操作 及 DataTable与Linq相互转换
- 10-09C#对象与XMl文件之间的相互转换
- 10-09C# double float int string 与 byte数组 相互转化