com.tc.util.ZipBuilder.archivePath()方法的使用及代码示例

x33g5p2x  于2022-02-05 转载在 其他  
字(2.6k)|赞(0)|评价(0)|浏览(95)

本文整理了Java中com.tc.util.ZipBuilder.archivePath()方法的一些代码示例,展示了ZipBuilder.archivePath()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZipBuilder.archivePath()方法的具体详情如下:
包路径:com.tc.util.ZipBuilder
类名称:ZipBuilder
方法名:archivePath

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);
}

相关文章