■ GZipStream 클래스를 사용해 GZIP 압축하는 방법을 보여준다.
▶ 예제 코드 (XAML)
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 |
using System; using System.IO; using System.IO.Compression; #region GZIP 압축하기 - CompressGZIP(sourceStream, targetStream) /// <summary> /// GZIP 압축하기 /// </summary> /// <param name="sourceStream">소스 스트림</param> /// <param name="targetStream">타겟 스트림</param> /// <returns>압축 바이트 수</returns> public long CompressGZIP(Stream sourceStream, Stream targetStream) { try { using(GZipStream gZipStream = new GZipStream(targetStream, CompressionMode.Compress)) { return StreamManager.Write(sourceStream, gZipStream); } } catch { return -1L; } } #endregion #region GZIP 압축하기 - CompressGZIP(sourceFilePath, targetFilePath) /// <summary> /// GZIP 압축하기 /// </summary> /// <param name="sourceFilePath">소스 파일 경로</param> /// <param name="targetFilePath">타겟 파일 경로</param> /// <returns>압축 바이트 수</returns> public long CompressGZIP(string sourceFilePath, string targetFilePath) { try { using(FileStream sourceFileStream = new FileStream(sourceFilePath, FileMode.Open, FileAccess.Read)) { using(FileStream targetFileStream = new FileStream(targetFilePath, FileMode.Create, FileAccess.Write)) { return CompressGZIP(sourceFileStream, targetFileStream); } } } catch { return -1L; } } #endregion #region GZIP 압축하기 - CompressGZIP(sourceByteArray) /// <summary> /// GZIP 압축하기 /// </summary> /// <param name="sourceByteArray">소스 바이트 배열</param> /// <returns>압축 바이트 배열</returns> public byte[] CompressGZIP(byte[] sourceByteArray) { try { using(MemoryStream sourceMemoryStream = new MemoryStream(sourceByteArray)) { using(MemoryStream targetMemoryStream = new MemoryStream()) { if(CompressGZIP(sourceMemoryStream, targetMemoryStream) == -1) { return null; } return targetMemoryStream.ToArray(); } } } catch { return null; } } #endregion |