1
yhj
2024-07-24 5e5d945e91568b973faa27d8ab0bcef99fc4a6c5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
#region
 
using System;
using System.Collections;
using System.Data;
using System.IO;
using System.IO.Compression;
using System.Runtime.Serialization.Formatters.Binary;
using System.Text;
 
#endregion
 
namespace CSFrameworkV5.Common
{
    /// <summary>
    ///     压缩/解压工具
    /// </summary>
    public class ZipTools
    {
        #region 压缩解压自符串
 
        public static string ZipString(string unCompressedString)
        {
            var bytData = Encoding.UTF8.GetBytes(unCompressedString);
 
            using (var ms = new MemoryStream())
            {
                using (Stream s = new GZipStream(ms, CompressionMode.Compress))
                {
                    s.Write(bytData, 0, bytData.Length);
                    var compressedData = ms.ToArray();
                    return Convert.ToBase64String(compressedData, 0,
                        compressedData.Length);
                }
            }
        }
 
        public static string UnzipString(string unCompressedString)
        {
            var uncompressedString = new StringBuilder();
            var writeData = new byte[4096];
 
            var bytData = Convert.FromBase64String(unCompressedString);
            var totalLength = 0;
            var size = 0;
 
            using (Stream s = new GZipStream(new MemoryStream(bytData),
                       CompressionMode.Decompress))
            {
                while (true)
                {
                    size = s.Read(writeData, 0, writeData.Length);
                    if (size > 0)
                    {
                        totalLength += size;
                        uncompressedString.Append(
                            Encoding.UTF8.GetString(writeData, 0, size));
                    }
                    else
                    {
                        break;
                    }
                }
 
                return uncompressedString.ToStringEx();
            }
        }
 
        //Demo
        //string abc = ZipString(txtCompressString.Text.Trim());
        //string Result = UnzipString(abc);
 
        #endregion
 
        #region 压缩解压数据集
 
        public static byte[] CompressionDataSet(DataSet dsOriginal)
        {
            if (dsOriginal == null) return null;
 
            dsOriginal.RemotingFormat = SerializationFormat.Binary;
            var bFormatter = new BinaryFormatter();
            using (var mStream = new MemoryStream())
            {
                bFormatter.Serialize(mStream, dsOriginal);
                var bytes = mStream.ToArray();
 
                using (var oStream = new MemoryStream())
                {
                    var zipStream =
                        new DeflateStream(oStream, CompressionMode.Compress);
                    zipStream.Write(bytes, 0, bytes.Length);
                    zipStream.Flush();
                    zipStream.Close();
                    return oStream.ToArray();
                }
            }
        }
 
        public static DataSet DecompressionDataSet(byte[] bytes)
        {
            if (bytes == null) return null;
 
            using (var mStream = new MemoryStream(bytes))
            {
                mStream.Seek(0, SeekOrigin.Begin);
 
                using (var unZipStream = new DeflateStream(mStream,
                           CompressionMode.Decompress, true))
                {
                    var dsResult = new DataSet();
                    dsResult.RemotingFormat = SerializationFormat.Binary;
                    var bFormatter = new BinaryFormatter();
                    dsResult = (DataSet)bFormatter.Deserialize(unZipStream);
                    return dsResult;
                }
            }
        }
 
        #endregion
 
        #region 压缩解压文件
 
        public static void CompressFile(string sourceFile,
            string destinationFile)
        {
            if (!File.Exists(CodeSafeHelper.GetSafePath(sourceFile)))
                throw new FileNotFoundException();
 
            FileStream sourceStream = null;
            FileStream destinationStream = null;
            GZipStream compressedStream = null;
 
            try
            {
                using (sourceStream = new FileStream(sourceFile, FileMode.Open,
                           FileAccess.Read, FileShare.Read))
                {
                    var buffer = new byte[sourceStream.Length];
                    var checkCounter =
                        sourceStream.Read(buffer, 0, buffer.Length);
                    if (checkCounter != buffer.Length)
                        throw new ApplicationException();
 
                    using (destinationStream =
                               new FileStream(destinationFile,
                                   FileMode.OpenOrCreate, FileAccess.Write))
                    {
                        using (compressedStream =
                                   new GZipStream(destinationStream,
                                       CompressionMode.Compress, true))
                        {
                            compressedStream.Write(buffer, 0, buffer.Length);
                        }
                    }
                }
            }
            finally
            {
                if (sourceStream != null) sourceStream.Dispose();
 
                if (destinationStream != null) destinationStream.Dispose();
 
                if (compressedStream != null) compressedStream.Dispose();
            }
        }
 
        public static void DecompressFile(string sourceFile,
            string destinationFile)
        {
            if (!File.Exists(sourceFile)) throw new FileNotFoundException();
 
            using (var sourceStream = new FileStream(sourceFile, FileMode.Open))
            {
                var quartetBuffer = new byte[4];
                var position = (int)sourceStream.Length - 4;
                sourceStream.Position = position;
                sourceStream.Read(quartetBuffer, 0, 4);
                sourceStream.Position = 0;
                var checkLength = BitConverter.ToInt32(quartetBuffer, 0);
                var buffer = new byte[checkLength + 100];
 
                using (var decompressedStream = new GZipStream(sourceStream,
                           CompressionMode.Decompress, true))
                {
                    var total = 0;
                    for (var offset = 0;;)
                    {
                        var bytesRead =
                            decompressedStream.Read(buffer, offset, 100);
                        if (bytesRead == 0) break;
 
                        offset += bytesRead;
                        total += bytesRead;
                    }
 
                    using (var destinationStream =
                           new FileStream(destinationFile, FileMode.Create))
                    {
                        destinationStream.Write(buffer, 0, total);
                    }
                }
            }
        }
 
        #endregion
 
        #region 压缩解压Ilist
 
        public static byte[] CompressionArrayList(IList DataOriginal)
        {
            if (DataOriginal == null) return null;
 
            var bFormatter = new BinaryFormatter();
            using (var mStream = new MemoryStream())
            {
                bFormatter.Serialize(mStream, DataOriginal);
                var bytes = mStream.ToArray();
 
                using (var oStream = new MemoryStream())
                {
                    var zipStream =
                        new DeflateStream(oStream, CompressionMode.Compress);
                    zipStream.Write(bytes, 0, bytes.Length);
                    zipStream.Flush();
                    zipStream.Close();
 
                    return oStream.ToArray();
                }
            }
        }
 
        public static IList DecompressionArrayList(byte[] bytes)
        {
            if (bytes == null) return null;
 
            using (var mStream = new MemoryStream(bytes))
            {
                mStream.Seek(0, SeekOrigin.Begin);
 
                using (var unZipStream = new DeflateStream(mStream,
                           CompressionMode.Decompress, true))
                {
                    IList dsResult = null;
                    var bFormatter = new BinaryFormatter();
                    dsResult = (IList)bFormatter.Deserialize(unZipStream);
                    return dsResult;
                }
            }
        }
 
        #endregion
 
        #region 压缩解压object
 
        public static byte[] CompressionObject(object DataOriginal)
        {
            if (DataOriginal == null) return null;
 
            var bFormatter = new BinaryFormatter();
            using (var mStream = new MemoryStream())
            {
                bFormatter.Serialize(mStream, DataOriginal);
                var bytes = mStream.ToArray();
 
                using (var oStream = new MemoryStream())
                {
                    var zipStream =
                        new DeflateStream(oStream, CompressionMode.Compress);
                    zipStream.Write(bytes, 0, bytes.Length);
                    zipStream.Flush();
                    zipStream.Close();
                    return oStream.ToArray();
                }
            }
        }
 
        public static object DecompressionObject(byte[] bytes)
        {
            if (bytes == null) return null;
 
            using (var mStream = new MemoryStream(bytes))
            {
                mStream.Seek(0, SeekOrigin.Begin);
                using (var unZipStream = new DeflateStream(mStream,
                           CompressionMode.Decompress, true))
                {
                    object dsResult = null;
                    var bFormatter = new BinaryFormatter();
                    dsResult = bFormatter.Deserialize(unZipStream);
                    return dsResult;
                }
            }
        }
 
        #endregion
    }
}