GZip压缩

作者:追风剑情 发布于:2020-9-1 12:03 分类:C#

  1. using System;
  2. using System.Text;
  3. using System.IO.Compression;
  4. using System.IO;
  5.  
  6. /// <summary>
  7. /// GZip算法比较适合压缩大量文本数据
  8. /// 不适合压缩图片(压缩后反而会变大)
  9. /// </summary>
  10. public static class GZipUtil
  11. {
  12. public static string Compress(string input)
  13. {
  14. if (string.IsNullOrEmpty(input))
  15. return input;
  16. byte[] buffer = Encoding.UTF8.GetBytes(input);
  17. byte[] compressBuffer = Compress(buffer);
  18. string base64 = Convert.ToBase64String(compressBuffer);
  19. return base64;
  20. }
  21.  
  22. public static string Decompress(string base64)
  23. {
  24. if (string.IsNullOrEmpty(base64))
  25. return base64;
  26. byte[] buffer = Convert.FromBase64String(base64);
  27. byte[] decompressBuffer = Decompress(buffer);
  28. string output = Encoding.UTF8.GetString(decompressBuffer);
  29. return output;
  30. }
  31.  
  32. public static byte[] Compress(byte[] buffer)
  33. {
  34. if (buffer == null || buffer.Length == 0)
  35. return buffer;
  36. //将数据压缩到内存流中
  37. MemoryStream ms = new MemoryStream();
  38. GZipStream gzip = new GZipStream(ms, CompressionMode.Compress, true);
  39. gzip.Write(buffer, 0, buffer.Length);
  40. gzip.Flush();
  41. gzip.Close();
  42. gzip.Dispose();
  43. //从内存流中读出压缩数据
  44. byte[] compressBuffer = ms.ToArray();
  45. ms.Close();
  46. ms.Dispose();
  47. return compressBuffer;
  48. }
  49.  
  50. public static byte[] Decompress(byte[] buffer)
  51. {
  52. if (buffer == null || buffer.Length == 0)
  53. return buffer;
  54. //将数据解压到内存流中
  55. MemoryStream ms = new MemoryStream(buffer);
  56. GZipStream gzip = new GZipStream(ms, CompressionMode.Decompress, true);
  57. //从gzip流中读出解压数据
  58. buffer = new byte[buffer.Length];
  59. MemoryStream decompressStream = new MemoryStream();
  60. int count;
  61. while ((count = gzip.Read(buffer, 0, buffer.Length)) > 0)
  62. decompressStream.Write(buffer, 0, count);
  63. gzip.Close();
  64.  
  65. byte[] decompressBuffer = decompressStream.ToArray();
  66. ms.Dispose();
  67. return decompressBuffer;
  68. }
  69.  
  70. public static bool IsGZip(byte[] buffer)
  71. {
  72. //gzip头信息格式
  73. //ID1(1byte)+ID2(1byte)+压缩方法(1byte)+标志(1byte)+MTIME(4byte)+额外头字段(可选)
  74. //ID1和ID2为固定值ID1=31、ID2=139
  75. bool isgzip = true;
  76. byte[] head = new byte[] { 31, 139 };
  77. for (int i=0; i< head.Length; i++)
  78. {
  79. if (buffer[i] != head[i])
  80. {
  81. isgzip = false;
  82. break;
  83. }
  84. }
  85. return isgzip;
  86. }
  87. }

标签: C#

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号