net.lingala.zip4j.core.ZipFile.removeFile()方法的使用及代码示例

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

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

ZipFile.removeFile介绍

[英]Removes the file provided in the input paramters from the zip file. This method first finds the file header and then removes the file. If file does not exist, then this method throws an exception. If zip file is a split zip file, then this method throws an exception as zip specification does not allow for updating split zip archives.
[中]从zip文件中删除输入参数中提供的文件。此方法首先查找文件头,然后删除文件。如果文件不存在,则此方法引发异常。如果zip文件是拆分的zip文件,那么这个方法会抛出一个异常,因为zip规范不允许更新拆分的zip档案。

代码示例

代码示例来源:origin: org.jboss.forge.addon/resources-impl

@Override
public boolean delete()
{
 try
 {
   getZipFile().removeFile(fileHeader);
 }
 catch (ZipException e)
 {
   throw new ResourceException("Error while deleting zip entry", e);
 }
 return true;
}

代码示例来源:origin: io.macgyver/macgyver-core

mj.removeFile("collected-cli-classes.jar");
} catch (Exception e) {

代码示例来源:origin: net.lingala.zip4j/zip4j

removeFile(fileHeader);

代码示例来源:origin: com.github.axet/zip4j

removeFile(fileHeader);

相关文章