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
| package com.util;
import java.io.*; import java.util.zip.GZIPInputStream; import java.util.zip.GZIPOutputStream;
public class GZipUtils {
public static final int BUFFER = 1024; public static final String EXT = ".gz";
public static void main(String[] args) throws Exception { String userHome = System.getProperties().getProperty("user.home"); String fileName = userHome+"/01.jpg"; compress(new File(fileName)); }
public static byte[] compress(byte[] data) throws Exception { ByteArrayInputStream bais = new ByteArrayInputStream(data); ByteArrayOutputStream baos = new ByteArrayOutputStream();
compress(bais, baos);
byte[] output = baos.toByteArray();
baos.flush(); baos.close();
bais.close();
return output; }
public static void compress(File file) throws Exception { compress(file, true); }
public static void compress(File file, boolean delete) throws Exception { FileInputStream fis = new FileInputStream(file); FileOutputStream fos = new FileOutputStream(file.getPath() + EXT);
compress(fis, fos);
fis.close(); fos.flush(); fos.close();
if (delete) { file.delete(); } }
public static void compress(InputStream is, OutputStream os) throws Exception {
GZIPOutputStream gos = new GZIPOutputStream(os);
int count; byte data[] = new byte[BUFFER]; while ((count = is.read(data, 0, BUFFER)) != -1) { gos.write(data, 0, count); }
gos.finish();
gos.flush(); gos.close(); }
public static void compress(String path) throws Exception { compress(path, true); }
public static void compress(String path, boolean delete) throws Exception { File file = new File(path); compress(file, delete); }
public static byte[] decompress(byte[] data) throws Exception { ByteArrayInputStream bais = new ByteArrayInputStream(data); ByteArrayOutputStream baos = new ByteArrayOutputStream();
decompress(bais, baos);
data = baos.toByteArray();
baos.flush(); baos.close();
bais.close();
return data; }
public static void decompress(File file) throws Exception { decompress(file, true); }
public static void decompress(File file, boolean delete) throws Exception { FileInputStream fis = new FileInputStream(file); FileOutputStream fos = new FileOutputStream(file.getPath().replace(EXT, "")); decompress(fis, fos); fis.close(); fos.flush(); fos.close();
if (delete) { file.delete(); } }
public static void decompress(InputStream is, OutputStream os) throws Exception {
GZIPInputStream gis = new GZIPInputStream(is);
int count; byte data[] = new byte[BUFFER]; while ((count = gis.read(data, 0, BUFFER)) != -1) { os.write(data, 0, count); }
gis.close(); }
public static void decompress(String path) throws Exception { decompress(path, true); }
public static void decompress(String path, boolean delete) throws Exception { File file = new File(path); decompress(file, delete); } }
|