當前位置: 首頁>>代碼示例>>Java>>正文


Java TarArchiveEntry.getLinkName方法代碼示例

本文整理匯總了Java中org.apache.commons.compress.archivers.tar.TarArchiveEntry.getLinkName方法的典型用法代碼示例。如果您正苦於以下問題:Java TarArchiveEntry.getLinkName方法的具體用法?Java TarArchiveEntry.getLinkName怎麽用?Java TarArchiveEntry.getLinkName使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.apache.commons.compress.archivers.tar.TarArchiveEntry的用法示例。


在下文中一共展示了TarArchiveEntry.getLinkName方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: TarDriverEntry

import org.apache.commons.compress.archivers.tar.TarArchiveEntry; //導入方法依賴的package包/類
protected TarDriverEntry(
        final String name,
        final TarArchiveEntry template) {
    super(name, true);
    //this.init = SIZE | MODTIME;
    super.setMode(template.getMode());
    this.setModTime0(template.getModTime().getTime());
    this.setSize0(template.getSize());
    super.setUserId(template.getLongUserId());
    super.setUserName(template.getUserName());
    super.setGroupId(template.getLongGroupId());
    super.setGroupName(template.getGroupName());
    super.setLinkName(template.getLinkName());
    super.setDevMajor(template.getDevMajor());
    super.setDevMinor(template.getDevMinor());
}
 
開發者ID:christian-schlichtherle,項目名稱:truevfs,代碼行數:17,代碼來源:TarDriverEntry.java

示例2: unpackEntries

import org.apache.commons.compress.archivers.tar.TarArchiveEntry; //導入方法依賴的package包/類
private static void unpackEntries(TarArchiveInputStream tis,
    TarArchiveEntry entry, File outputDir) throws IOException {
  if (entry.isDirectory()) {
    File subDir = new File(outputDir, entry.getName());
    if (!subDir.mkdirs() && !subDir.isDirectory()) {
      throw new IOException("Mkdirs failed to create tar internal dir "
          + outputDir);
    }

    for (TarArchiveEntry e : entry.getDirectoryEntries()) {
      unpackEntries(tis, e, subDir);
    }

    return;
  }

  File outputFile = new File(outputDir, entry.getName());
  if (!outputFile.getParentFile().exists()) {
    if (!outputFile.getParentFile().mkdirs()) {
      throw new IOException("Mkdirs failed to create tar internal dir "
          + outputDir);
    }
  }

  if (entry.isLink()) {
    File src = new File(outputDir, entry.getLinkName());
    HardLink.createHardLink(src, outputFile);
    return;
  }

  int count;
  byte data[] = new byte[2048];
  try (BufferedOutputStream outputStream = new BufferedOutputStream(
      new FileOutputStream(outputFile));) {

    while ((count = tis.read(data)) != -1) {
      outputStream.write(data, 0, count);
    }

    outputStream.flush();
  }
}
 
開發者ID:nucypher,項目名稱:hadoop-oss,代碼行數:43,代碼來源:FileUtil.java

示例3: extractArchive

import org.apache.commons.compress.archivers.tar.TarArchiveEntry; //導入方法依賴的package包/類
private static void extractArchive(Path destDir, TarArchiveInputStream archive, ExtractListener listener)
    throws IOException
{
    String prefix = destDir.toString();
    TarArchiveEntry entry;
    while (true) {
        entry = archive.getNextTarEntry();
        if (entry == null) {
            break;
        }
        Path path = destDir.resolve(entry.getName()).normalize();
        if (!path.toString().startsWith(prefix)) {
            throw new RuntimeException("Archive includes an invalid entry: " + entry.getName());
        }
        if (entry.isDirectory()) {
            Files.createDirectories(path);
        }
        else if (entry.isSymbolicLink()) {
            Files.createDirectories(path.getParent());
            String dest = entry.getLinkName();
            Path destAbsPath = path.getParent().resolve(dest).normalize();
            if (!destAbsPath.normalize().toString().startsWith(prefix)) {
                throw new RuntimeException("Archive includes an invalid symlink: " + entry.getName() + " -> " + dest);
            }
            if (listener != null) {
                listener.symlink(destDir.relativize(path), dest);
            }
            Files.createSymbolicLink(path, Paths.get(dest));
        }
        else {
            Files.createDirectories(path.getParent());
            if (listener != null) {
                listener.file(destDir.relativize(path));
            }
            try (OutputStream out = Files.newOutputStream(path)) {
                ByteStreams.copy(archive, out);
            }
        }
        if (!Files.isSymbolicLink(path)) {
            Files.setPosixFilePermissions(path, getPosixFilePermissions(entry));
        }
    }
}
 
開發者ID:treasure-data,項目名稱:digdag,代碼行數:44,代碼來源:ProjectArchives.java


注:本文中的org.apache.commons.compress.archivers.tar.TarArchiveEntry.getLinkName方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。