本文整理了Java中com.tc.util.ZipBuilder.archivePath()
方法的一些代码示例,展示了ZipBuilder.archivePath()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZipBuilder.archivePath()
方法的具体详情如下:
包路径:com.tc.util.ZipBuilder
类名称:ZipBuilder
方法名:archivePath
暂无
代码示例来源: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-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-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
@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
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
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);
}
内容来源于网络,如有侵权,请联系作者删除!