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 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392
| package de.soderer.utilities;
import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.ByteArrayOutputStream;
import java.io.Closeable;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.util.Date;
import java.util.Enumeration;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.zip.ZipEntry;
import java.util.zip.ZipException;
import java.util.zip.ZipFile;
import java.util.zip.ZipOutputStream;
import org.apache.commons.io.IOUtils;
import org.apache.commons.lang3.StringUtils;
public class ZipUtilities {
/**
* Zippen einer Datei oder rekursiv aller Dateien und Unterdateien eines Ordners
* Dabei wird das Zipfile im gleichen Verzeichnis wie die zu zippende Datei abgelegt
*
* @param sourceFile
* @return
* @throws IOException
*/
public static File zipFile(File sourceFile) throws IOException {
File zippedFile = new File(sourceFile.getAbsolutePath() + ".zip");
zipFile(sourceFile, zippedFile);
return zippedFile;
}
/**
* Zippen einer Datei oder rekursiv aller Dateien und Unterdateien eines Ordners
*
* @param sourceFile
* @param destinationZipFile
* @throws IOException
*/
public static void zipFile(File sourceFile, File destinationZipFile) throws IOException {
ZipOutputStream zipOutputStream = null;
if (!sourceFile.exists())
throw new IOException("SourceFile does not exist");
if (destinationZipFile.exists())
throw new IOException("DestinationFile already exists");
try {
zipOutputStream = openNewZipOutputStream(destinationZipFile);
addFileToOpenZipFileStream(sourceFile, zipOutputStream);
IOUtils.closeQuietly(zipOutputStream);
zipOutputStream = null;
}
catch (IOException e) {
if (destinationZipFile.exists()) {
IOUtils.closeQuietly(zipOutputStream);
destinationZipFile.delete();
}
throw e;
}
finally {
IOUtils.closeQuietly(zipOutputStream);
}
}
/**
* Zippen einer Datei oder rekursiv aller Dateien und Unterdateien eines Ordners
* Es wird hierbei ein neuer relativer Pfad begonnen
*
* @param sourceFile
* @param destinationZipFileSream
* @throws IOException
*/
public static void addFileToOpenZipFileStream(File sourceFile, ZipOutputStream destinationZipFileSream) throws IOException {
addFileToOpenZipFileStream(sourceFile, File.separator, destinationZipFileSream);
}
/**
* Zippen einer Datei oder rekursiv aller Dateien und Unterdateien eines Ordners
*
* @param sourceFile
* @param destinationZipFileSream
* @throws IOException
*/
public static void addFileToOpenZipFileStream(File sourceFile, String relativeDirPath, ZipOutputStream destinationZipFileSream) throws IOException {
BufferedInputStream bufferedFileInputStream = null;
if (!sourceFile.exists())
throw new IOException("SourceFile does not exist");
if (destinationZipFileSream == null)
throw new IOException("DestinationStream is not ready");
if (relativeDirPath == null
|| (!relativeDirPath.endsWith("/")
&& !relativeDirPath.endsWith("\\")))
throw new IOException("RelativeDirPath is invalid");
try {
if (!sourceFile.isDirectory()) {
ZipEntry entry = new ZipEntry(relativeDirPath + sourceFile.getName());
entry.setTime(sourceFile.lastModified());
destinationZipFileSream.putNextEntry(entry);
bufferedFileInputStream = new BufferedInputStream(new FileInputStream(sourceFile));
byte[] bufferArray = new byte[4096];
int byteBufferFillLength = bufferedFileInputStream.read(bufferArray);
while (byteBufferFillLength > -1) {
destinationZipFileSream.write(bufferArray, 0, byteBufferFillLength);
byteBufferFillLength = bufferedFileInputStream.read(bufferArray);
}
bufferedFileInputStream.close();
bufferedFileInputStream = null;
destinationZipFileSream.flush();
destinationZipFileSream.closeEntry();
}
else {
for (File sourceSubFile : sourceFile.listFiles()) {
addFileToOpenZipFileStream(sourceSubFile, relativeDirPath + sourceFile.getName() + File.separator, destinationZipFileSream);
}
}
}
catch (IOException e) {
throw e;
}
finally {
IOUtils.closeQuietly(bufferedFileInputStream);
}
}
/**
* Hinzufügen von Daten zu einem offenen ZipOutputStream als virtuelle Datei
*
* @param fileData
* @param filename
* @param destinationZipFileSream
* @throws IOException
*/
public static void addFileDataToOpenZipFileStream(byte[] fileData, String filename, ZipOutputStream destinationZipFileSream) throws IOException {
addFileDataToOpenZipFileStream(fileData, File.separator, filename, destinationZipFileSream);
}
/**
* Öffnen eines neuen ZipOutputStream basierend auf eine Datei in die geschrieben werden soll
*
* @param destinationZipFile
* @return
* @throws IOException
*/
public static ZipOutputStream openNewZipOutputStream(File destinationZipFile) throws IOException {
if (destinationZipFile.exists())
throw new IOException("DestinationFile already exists");
else if (!destinationZipFile.getParentFile().exists())
throw new IOException("DestinationDirectory does not exist");
try {
return new ZipOutputStream(new BufferedOutputStream(new FileOutputStream(destinationZipFile)));
}
catch (IOException e) {
if (destinationZipFile.exists()) {
destinationZipFile.delete();
}
throw e;
}
}
/**
* Öffnen eines neuen ZipOutputStream basierend auf einem beliebeigen OutputStream in den geschrieben werden soll
*
* @param destinationZipStream
* @return
* @throws IOException
*/
public static ZipOutputStream openNewZipOutputStream(OutputStream destinationZipStream) throws IOException {
if (destinationZipStream == null)
throw new IOException("DestinationStream is missing");
return new ZipOutputStream(new BufferedOutputStream(destinationZipStream));
}
/**
* Hinzufügen von Daten zu einem offenen ZipOutputStream als virtuelle Datei
*
* @param fileData
* @param relativeDirPath
* @param filename
* @param destinationZipFileSream
* @throws IOException
*/
public static void addFileDataToOpenZipFileStream(byte[] fileData, String relativeDirPath, String filename, ZipOutputStream destinationZipFileSream) throws IOException {
if (fileData == null)
throw new IOException("FileData is missing");
if (StringUtils.isEmpty(filename) || filename.trim().length() == 0)
throw new IOException("Filename is missing");
if (destinationZipFileSream == null)
throw new IOException("DestinationStream is not ready");
if (relativeDirPath == null
|| (!relativeDirPath.endsWith("/")
&& !relativeDirPath.endsWith("\\")))
throw new IOException("RelativeDirPath is invalid");
ZipEntry entry = new ZipEntry(relativeDirPath + filename);
entry.setTime(new Date().getTime());
destinationZipFileSream.putNextEntry(entry);
destinationZipFileSream.write(fileData);
destinationZipFileSream.flush();
destinationZipFileSream.closeEntry();
}
/**
* Hinzufügen einer Datei oder rekursiv aller Dateien und Unterdateien eines Ordners zu einer bereits existierenden ZipFile
* Dabei werden alle Einträge der OriginalZipFile in eine neue ZipFile umkopiert
*
* @param sourceFile
* @return
* @throws IOException
*/
public static void addFileToExistingzipFile(File sourceFile, File zipFile) throws IOException {
ZipOutputStream zipOutputStream = openExistingZipFileForExtension(zipFile);
try {
addFileToOpenZipFileStream(sourceFile, zipOutputStream);
}
finally {
IOUtils.closeQuietly(zipOutputStream);
}
}
/**
* Hinzufügen einer Liste von Datei oder rekursiv aller Dateien und Unterdateien eines Ordners zu einer bereits existierenden ZipFile
* Dabei werden alle Einträge der OriginalZipFile in eine neue ZipFile umkopiert
*
* @param sourceFile
* @return
* @throws IOException
*/
public static void addFileToExistingzipFile(List<File> sourceFiles, File zipFile) throws IOException {
ZipOutputStream zipOutputStream = openExistingZipFileForExtension(zipFile);
try {
for (File file : sourceFiles) {
addFileToOpenZipFileStream(file, zipOutputStream);
}
}
finally {
IOUtils.closeQuietly(zipOutputStream);
}
}
/**
* Öffnen einer existierenden Zip-Datei um neue Dateien anzuhängen oder wenn diese Datei noch nicht existiert eine neue Zip-Datei erstellen
* @param file
* @return
* @throws IOException
*/
public static ZipOutputStream openExistingZipFileForExtensionOrCreateNewZipFile(File zipFile) throws IOException {
if (zipFile.exists())
return openExistingZipFileForExtension(zipFile);
else
return openNewZipOutputStream(zipFile);
}
/**
* Öffnen einer existierenden ZipFile um neue Dateien anzuhängen
* Dabei werden alle Einträge der OriginalZipFile in eine neue ZipFile umkopiert
*
* @param zipFile
* @return
* @throws IOException
* @throws ZipException
*/
public static ZipOutputStream openExistingZipFileForExtension(File zipFile) throws IOException {
//Umbenennen des QuellZipFiles (Achtung: der String Pfad und Name von zipFile bleibt dabei erhalten und wird nicht mit umbenannt)
File originalFileTemp = new File(zipFile.getParentFile().getAbsolutePath() + "/" + String.valueOf(System.currentTimeMillis()));
zipFile.renameTo(originalFileTemp);
ZipOutputStream zipOutputStream = new ZipOutputStream(new BufferedOutputStream(new FileOutputStream(zipFile)));
BufferedInputStream bufferedInputStream = null;
ZipFile sourceZipFile = null;
try {
sourceZipFile = new ZipFile(originalFileTemp);
// Umkopieren der Einträge
Enumeration<? extends ZipEntry> srcEntries = sourceZipFile.entries();
while (srcEntries.hasMoreElements()) {
ZipEntry sourceZipFileEntry = srcEntries.nextElement();
zipOutputStream.putNextEntry(sourceZipFileEntry);
bufferedInputStream = new BufferedInputStream(sourceZipFile.getInputStream(sourceZipFileEntry));
byte[] bufferArray = new byte[4096];
int byteBufferFillLength = bufferedInputStream.read(bufferArray);
while (byteBufferFillLength > -1) {
zipOutputStream.write(bufferArray, 0, byteBufferFillLength);
byteBufferFillLength = bufferedInputStream.read(bufferArray);
}
zipOutputStream.closeEntry();
bufferedInputStream.close();
bufferedInputStream = null;
}
zipOutputStream.flush();
sourceZipFile.close();
originalFileTemp.delete();
return zipOutputStream;
}
catch (IOException e) {
// Löschen des evtl. vorhandenen neuen ZipFiles
if (zipFile.exists()) {
IOUtils.closeQuietly(zipOutputStream);
zipFile.delete();
}
//Zurückdrehen der Umbenennung des QuellZipFiles
originalFileTemp.renameTo(zipFile);
throw e;
}
finally {
IOUtils.closeQuietly(bufferedInputStream);
IOUtils.closeQuietly((Closeable) sourceZipFile);
}
}
/**
* Auslesen einer ZipDatei
* @param zipFile
* @return alle Dateieinträge in einer Map
* @throws IOException
*/
public static Map<String, byte[]> readExistingZipFile(File zipFile) throws IOException {
Map<String, byte[]> returnMap = new HashMap<String, byte[]>();
ZipFile sourceZipFile = null;
BufferedInputStream bufferedInputStream = null;
ByteArrayOutputStream byteArrayOutputStream = null;
try {
sourceZipFile = new ZipFile(zipFile);
// Lesen der Einträge
Enumeration<? extends ZipEntry> srcEntries = sourceZipFile.entries();
while (srcEntries.hasMoreElements()) {
ZipEntry sourceZipFileEntry = srcEntries.nextElement();
bufferedInputStream = new BufferedInputStream(sourceZipFile.getInputStream(sourceZipFileEntry));
byteArrayOutputStream = new ByteArrayOutputStream();
byte[] bufferArray = new byte[4096];
int byteBufferFillLength = bufferedInputStream.read(bufferArray);
while (byteBufferFillLength > -1) {
byteArrayOutputStream.write(bufferArray, 0, byteBufferFillLength);
byteBufferFillLength = bufferedInputStream.read(bufferArray);
}
returnMap.put(sourceZipFileEntry.getName(), byteArrayOutputStream.toByteArray());
byteArrayOutputStream.close();
byteArrayOutputStream = null;
bufferedInputStream.close();
bufferedInputStream = null;
}
sourceZipFile.close();
return returnMap;
}
finally {
IOUtils.closeQuietly(bufferedInputStream);
IOUtils.closeQuietly(byteArrayOutputStream);
IOUtils.closeQuietly((Closeable) sourceZipFile);
}
}
}
|
54055(+90) Besucher