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


Java ZipArchiveEntry.setExtraFields方法代碼示例

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


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

示例1: entryToNewName

import org.apache.commons.compress.archivers.zip.ZipArchiveEntry; //導入方法依賴的package包/類
/**
 * Entry to new name.
 *
 * @param source the source
 * @param name the name
 * @return the zip archive entry
 * @throws ZipException the zip exception
 */
public static ZipArchiveEntry entryToNewName(ZipArchiveEntry source, String name) throws ZipException {
  if (source.getName().equals(name))
    return new ZipArchiveEntry(source);
  ZipArchiveEntry ret = new ZipArchiveEntry(name);
  byte[] extra = source.getExtra();
  if (extra != null) {
    ret.setExtraFields(ExtraFieldUtils.parse(extra, true, ExtraFieldUtils.UnparseableExtraField.READ));
  } else {
    ret.setExtra(ExtraFieldUtils.mergeLocalFileDataData(source.getExtraFields(true)));
  }
  ret.setInternalAttributes(source.getInternalAttributes());
  ret.setExternalAttributes(source.getExternalAttributes());
  ret.setExtraFields(source.getExtraFields(true));
  ret.setCrc(source.getCrc());
  ret.setMethod(source.getMethod());
  ret.setSize(source.getSize());
  return ret;
}
 
開發者ID:NitorCreations,項目名稱:javaxdelta,代碼行數:27,代碼來源:JarDelta.java

示例2: setExtraFields

import org.apache.commons.compress.archivers.zip.ZipArchiveEntry; //導入方法依賴的package包/類
private static void setExtraFields(Path filePath, int fileType, ZipArchiveEntry entry) throws IOException {
    if (PosixUtil.isPosixFileStore(filePath)) {
        Set<PosixFilePermission> perms = Files.getPosixFilePermissions(filePath);
        entry.setUnixMode(fileType | PosixUtil.getPosixPermissionsAsInt(perms));
        X5455_ExtendedTimestamp x5455 = getX5455(filePath);
        X7875_NewUnix x7875 = getX7875(filePath);
        if (x5455 != null && x7875 != null) {
            entry.setExtraFields(new ZipExtraField[] {x5455, x7875});
        }
    }
}
 
開發者ID:ctco,項目名稱:gradle-mobile-plugin,代碼行數:12,代碼來源:ZipUtil.java

示例3: copyEntry

import org.apache.commons.compress.archivers.zip.ZipArchiveEntry; //導入方法依賴的package包/類
/**
 * Entry to new name.
 *
 * @param source the source
 * @param name the name
 * @return the zip archive entry
 * @throws ZipException the zip exception
 */
private ZipArchiveEntry copyEntry(ZipArchiveEntry source) throws ZipException {
  ZipArchiveEntry ret = new ZipArchiveEntry(source.getName());
  byte[] extra = source.getExtra();
  if (extra != null) {
    ret.setExtraFields(ExtraFieldUtils.parse(extra, true, ExtraFieldUtils.UnparseableExtraField.READ));
  } else {
    ret.setExtra(ExtraFieldUtils.mergeLocalFileDataData(source.getExtraFields(true)));
  }
  ret.setInternalAttributes(source.getInternalAttributes());
  ret.setExternalAttributes(source.getExternalAttributes());
  ret.setExtraFields(source.getExtraFields(true));
  return ret;
}
 
開發者ID:NitorCreations,項目名稱:javaxdelta,代碼行數:22,代碼來源:JarPatcher.java


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