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