本文整理了Java中com.tc.util.ZipBuilder
类的一些代码示例,展示了ZipBuilder
类的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZipBuilder
类的具体详情如下:
包路径:com.tc.util.ZipBuilder
类名称:ZipBuilder
[英]NOT THREAD SAFE
[中]线程不安全
代码示例来源:origin: org.terracotta/terracotta-ee
@Override
public final void putEntry(String file, byte[] bytes) throws IOException {
if (entrySet.contains(file.toString())) return;
entrySet.add(file.toString());
String fileEntry = archivePath(file);
ZipEntry entry = createEntry(fileEntry);
entry.setSize(bytes.length);
entry.setCrc(getCrc32(bytes));
zout.putNextEntry(entry);
zout.write(bytes, 0, bytes.length);
if (verbose) System.out.println(fileEntry);
}
代码示例来源:origin: org.terracotta/terracotta-ee
@Override
protected final ZipOutputStream getArchiveOutputStream(File archiveFile) throws IOException {
if (isInit) super.getArchiveOutputStream(archiveFile); // throws Exception
isInit = true;
return new JarOutputStream(new BufferedOutputStream(new FileOutputStream(archiveFile)), new Manifest());
}
}
代码示例来源:origin: org.terracotta/terracotta-l1-ee
@Override
public final void putTraverseDirectory(File dir, String dirName) throws IOException {
if (!dir.isDirectory()) throw new IOException("Unexpected Exception: " + dir + "\nis not a directory");
putDirEntry(dirName);
String[] files = dir.list();
for (String file2 : files) {
File file = new File(dir + File.separator + file2);
if (file.isDirectory()) {
putTraverseDirectory(file, dirName + File.separator + file.getName());
continue;
}
putEntry(dirName + File.separator + file2, readFile(file));
}
}
代码示例来源:origin: org.terracotta/terracotta-ee
@Override
public final void putDirEntry(String file) throws IOException {
if (dirSet.contains(file)) return;
dirSet.add(file);
String dirEntry = archivePath(file) + "/";
ZipEntry entry = createEntry(dirEntry);
entry.setSize(0);
entry.setCrc(0);
zout.putNextEntry(entry);
if (verbose) System.out.println(dirEntry);
}
代码示例来源:origin: org.terracotta/terracotta-ee
private void createPathArchive() {
try {
System.out.println("Archiving:\n----------------------------------------");
ArchiveBuilder zip = new ZipBuilder(archiveFile, true);
zip.putEntry("env-stats", EnvStats.report().getBytes("UTF-8"));
zip.putTraverseDirectory(tcConfig, tcConfig.getName());
zip.finish();
} catch (IOException e) {
System.out.println("Unexpected error - unable to write Terracotta archive: " + archiveFile);
e.printStackTrace();
System.exit(1);
}
System.out.println("\n\nWrote archive to:" + archiveFile);
}
代码示例来源:origin: org.terracotta/terracotta-l1-ee
@Override
public final void putDirEntry(String file) throws IOException {
if (dirSet.contains(file)) return;
dirSet.add(file);
String dirEntry = archivePath(file) + "/";
ZipEntry entry = createEntry(dirEntry);
entry.setSize(0);
entry.setCrc(0);
zout.putNextEntry(entry);
if (verbose) System.out.println(dirEntry);
}
代码示例来源:origin: org.terracotta/terracotta-l1-ee
private void createPathArchive() {
try {
System.out.println("Archiving:\n----------------------------------------");
ArchiveBuilder zip = new ZipBuilder(archiveFile, true);
zip.putEntry("env-stats", EnvStats.report().getBytes("UTF-8"));
zip.putTraverseDirectory(tcConfig, tcConfig.getName());
zip.finish();
} catch (IOException e) {
System.out.println("Unexpected error - unable to write Terracotta archive: " + archiveFile);
e.printStackTrace();
System.exit(1);
}
System.out.println("\n\nWrote archive to:" + archiveFile);
}
代码示例来源:origin: org.terracotta/terracotta-l1
@Override
public final void putTraverseDirectory(File dir, String dirName) throws IOException {
if (!dir.isDirectory()) throw new IOException("Unexpected Exception: " + dir + "\nis not a directory");
putDirEntry(dirName);
String[] files = dir.list();
for (String file2 : files) {
File file = new File(dir + File.separator + file2);
if (file.isDirectory()) {
putTraverseDirectory(file, dirName + File.separator + file.getName());
continue;
}
putEntry(dirName + File.separator + file2, readFile(file));
}
}
代码示例来源:origin: org.terracotta/terracotta-l1-ee
@Override
public final void putEntry(String file, byte[] bytes) throws IOException {
if (entrySet.contains(file.toString())) return;
entrySet.add(file.toString());
String fileEntry = archivePath(file);
ZipEntry entry = createEntry(fileEntry);
entry.setSize(bytes.length);
entry.setCrc(getCrc32(bytes));
zout.putNextEntry(entry);
zout.write(bytes, 0, bytes.length);
if (verbose) System.out.println(fileEntry);
}
代码示例来源:origin: org.terracotta/terracotta-l1
@Override
public final void putDirEntry(String file) throws IOException {
if (dirSet.contains(file)) return;
dirSet.add(file);
String dirEntry = archivePath(file) + "/";
ZipEntry entry = createEntry(dirEntry);
entry.setSize(0);
entry.setCrc(0);
zout.putNextEntry(entry);
if (verbose) System.out.println(dirEntry);
}
代码示例来源:origin: org.terracotta/terracotta-l1
@Override
protected final ZipOutputStream getArchiveOutputStream(File archiveFile) throws IOException {
if (isInit) super.getArchiveOutputStream(archiveFile); // throws Exception
isInit = true;
return new JarOutputStream(new BufferedOutputStream(new FileOutputStream(archiveFile)), new Manifest());
}
}
代码示例来源:origin: org.terracotta/terracotta-l1
private void createPathArchive() {
try {
System.out.println("Archiving:\n----------------------------------------");
ArchiveBuilder zip = new ZipBuilder(archiveFile, true);
zip.putEntry("env-stats", EnvStats.report().getBytes("UTF-8"));
zip.putTraverseDirectory(tcConfig, tcConfig.getName());
zip.finish();
} catch (IOException e) {
System.out.println("Unexpected error - unable to write Terracotta archive: " + archiveFile);
e.printStackTrace();
System.exit(1);
}
System.out.println("\n\nWrote archive to:" + archiveFile);
}
代码示例来源:origin: org.terracotta/terracotta-ee
@Override
public final void putTraverseDirectory(File dir, String dirName) throws IOException {
if (!dir.isDirectory()) throw new IOException("Unexpected Exception: " + dir + "\nis not a directory");
putDirEntry(dirName);
String[] files = dir.list();
for (String file2 : files) {
File file = new File(dir + File.separator + file2);
if (file.isDirectory()) {
putTraverseDirectory(file, dirName + File.separator + file.getName());
continue;
}
putEntry(dirName + File.separator + file2, readFile(file));
}
}
代码示例来源:origin: org.terracotta/terracotta-l1
@Override
public final void putEntry(String file, byte[] bytes) throws IOException {
if (entrySet.contains(file.toString())) return;
entrySet.add(file.toString());
String fileEntry = archivePath(file);
ZipEntry entry = createEntry(fileEntry);
entry.setSize(bytes.length);
entry.setCrc(getCrc32(bytes));
zout.putNextEntry(entry);
zout.write(bytes, 0, bytes.length);
if (verbose) System.out.println(fileEntry);
}
代码示例来源:origin: org.terracotta/terracotta-l1-ee
@Override
protected final ZipOutputStream getArchiveOutputStream(File archiveFile) throws IOException {
if (isInit) super.getArchiveOutputStream(archiveFile); // throws Exception
isInit = true;
return new JarOutputStream(new BufferedOutputStream(new FileOutputStream(archiveFile)), new Manifest());
}
}
代码示例来源:origin: org.terracotta/terracotta-ee
ArchiveBuilder zip = new ZipBuilder(archiveFile, true);
System.out.println("Archiving:");
zip.putEntry(tcConfig.getName(), zip.readFile(tcConfig));
代码示例来源:origin: org.terracotta/terracotta-ee
public ZipBuilder(File archiveFile, boolean useCompression, boolean verbose) throws IOException {
zout = getArchiveOutputStream(archiveFile);
if (useCompression) {
zout.setMethod(ZipEntry.DEFLATED);
zout.setLevel(9);
} else {
zout.setMethod(ZipEntry.STORED);
zout.setLevel(0);
}
this.verbose = verbose;
}
代码示例来源:origin: org.terracotta/terracotta-l1
ArchiveBuilder zip = new ZipBuilder(archiveFile, true);
System.out.println("Archiving:");
zip.putEntry(tcConfig.getName(), zip.readFile(tcConfig));
代码示例来源:origin: org.terracotta/terracotta-l1
public ZipBuilder(File archiveFile, boolean useCompression, boolean verbose) throws IOException {
zout = getArchiveOutputStream(archiveFile);
if (useCompression) {
zout.setMethod(ZipEntry.DEFLATED);
zout.setLevel(9);
} else {
zout.setMethod(ZipEntry.STORED);
zout.setLevel(0);
}
this.verbose = verbose;
}
代码示例来源:origin: org.terracotta/terracotta-l1-ee
ArchiveBuilder zip = new ZipBuilder(archiveFile, true);
System.out.println("Archiving:");
zip.putEntry(tcConfig.getName(), zip.readFile(tcConfig));
内容来源于网络,如有侵权,请联系作者删除!