1. 首页
  2. 数据库
  3. 其它
  4. .net压缩功能实现方法

.net压缩功能实现方法

上传者: 2021-01-03 23:44:27上传 PDF文件 17.48KB 热度 15次
代码如下:public static class Compressor { public static byte[] Compress(byte[] data) { using (MemoryStream output = new MemoryStream()) { using (GZipStream gzip = new GZipStream(output, CompressionMode.Compress, true))
用户评论