99100101102103104105
ZipFile zipFile = ZipHelper.openZipFile(path); if (zipFile == null) throw new InvalidOperationException( "Can't open the specified file: '" + path + "'"); this.zipArchive = new ZipFileZipEntrySource(zipFile); }
100101102103104105106
107108109110111112113
} catch (IOException e) { throw new InvalidOperationException( "Can't open the specified file: '" + path + "'", e); } this.zipArchive = new ZipFileZipEntrySource(zipFile); }
133134135136137138139
} catch (IOException e) { throw new InvalidOperationException( "Can't open the specified file: '" + file + "'", e); } this.zipArchive = new ZipFileZipEntrySource(zipFile); }
111112113114115116117
137138139140141142143
105106107108109110111