■ 바이트 배열 ZIP 압축/압축 해제하는 방법을 보여준다.
▶ 예제 코드 (C#)
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 |
using System; using System.IO; using ICSharpCode.SharpZipLib.Zip; #region 바이트 배열 압축하기 - Compress(sourceByteArray) /// <summary> /// 바이트 배열 압축하기 /// </summary> /// <param name="sourceByteArray">소스 바이트 배열</param> /// <returns>타겟 바이트 배열</returns> public byte[] CompressByteArray(byte[] sourceByteArray) { string guid = Guid.NewGuid().ToString(); MemoryStream targetMemoryStream = new MemoryStream(); ZipOutputStream zipOutputStream = new ZipOutputStream(targetMemoryStream); zipOutputStream.SetLevel(9); zipOutputStream.SetComment(guid); using(MemoryStream sourceMemoryStream = new MemoryStream(sourceByteArray)) { zipOutputStream.PutNextEntry(new ZipEntry(guid)); byte[] bufferByteArray = new byte[2048]; while(true) { int readCount = sourceMemoryStream.Read(bufferByteArray, 0, bufferByteArray.Length); if(readCount == 0) { break; } zipOutputStream.Write(bufferByteArray, 0, readCount); } zipOutputStream.CloseEntry(); } byte[] targetByteArray = targetMemoryStream.ToArray(); zipOutputStream.Finish(); zipOutputStream.Close(); return targetByteArray; } #endregion #region 바이트 배열 압축 해제하기 - DecompressByteArray(sourceByteArray) /// <summary> /// 바이트 배열 압축 해제하기 /// </summary> /// <param name="sourceByteArray">소스 바이트 배열</param> /// <returns>타겟 바이트 배열</returns> public static byte[] DecompressByteArray(byte[] sourceByteArray) { MemoryStream sourceMemoryStream = new MemoryStream(sourceByteArray); ZipInputStream zipInputStream = new ZipInputStream(sourceMemoryStream); byte[] bufferByteArray = new byte[2048]; byte[] targetByteArray = null; ZipEntry zipEntry = zipInputStream.GetNextEntry(); if(zipEntry == null) { return targetByteArray; } using(MemoryStream targetMemoryStream = new MemoryStream()) { while(true) { int readCount = zipInputStream.Read(bufferByteArray, 0, 2048); if(readCount == 0) { break; } targetMemoryStream.Write(bufferByteArray, 0, readCount); } targetByteArray = targetMemoryStream.ToArray(); } zipInputStream.Close(); return targetByteArray; } #endregion |
※ 첨부 ICSharpCode.SharpZipLib.dll 파일을 참조한다.