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, , count);
} //C#将二进制转换为压缩文件
public void GetByteToZip(string outpath)
{
string path = outpath;//压缩文件的地址
File.WriteAllBytes(path, bytes);
}
}
相关文章
- 08-27Python中字符串与字节之间相互转换
- 08-27C# 文件与二进制互转数据库写入读出
- 08-27C#中String 与Color之间的相互转换
- 08-27C# 压缩文件与字节互转
- 08-27WPF(C#)中Bitmap与BitmapImage相互转换
- 08-27c# – SHA-1散列字节数组与文件流
- 08-27C#发送字符串转字节含空格与0x需删去
- 08-27C# LINQ系列:LINQ to DataSet的DataTable操作 及 DataTable与Linq相互转换
- 08-27C#对象与XMl文件之间的相互转换
- 08-27C# double float int string 与 byte数组 相互转化