在java中解压缩后删除一个zip文件

时间:2011-03-07 06:24:52

标签: java delete-file

如何在java中删除zip文件? file.delete方法返回false。为什么呢?

File file = new File("/mibook/"+mFilename+"/"+mZipname.toString());
boolean deleted = file.delete();

编辑:
规则“目录应该在删除前清空..”它是否适用于zip文件?

我的文件解压缩代码


   public void unzip() throws IOException { 
        FileInputStream fin=null;
        ZipInputStream zin=null;
        File file =null;
        ZipEntry ze ;
        FileOutputStream fout=null;
        try{ 
            System.out.println(_zipFile );
            System.out.println(_location);
            fin = new FileInputStream(_zipFile); 
            zin = new ZipInputStream(fin); 
            ze= null; 
            byte[] buffer = new byte[1024];
            int length;
            while ((ze = zin.getNextEntry()) != null) { 
                file = new File((_location +"/" + ze.getName()));
                file.getParentFile().mkdirs();
                 fout= new FileOutputStream(_location + ze.getName()); 
                while ((length = zin.read(buffer))>0) {
                    fout.write(buffer, 0, length);
                }
                zin.closeEntry(); 
                fout.close();
} zin.close(); }catch(Exception e) { Log.e("Decompress", "unzip", e); }
finally {

            fin.close();
            zin.close();
            fout.close();


    }

} 

4 个答案:

答案 0 :(得分:6)

您必须确保关闭ZipFile。

例如我有:

ZipFile zFile = new ZipFile("blah");
//lots-o-code
zFile.close();
File file = new File("blah");
file.delete();

答案 1 :(得分:5)

如果file.delete()返回false,那么我的猜测是另一个进程打开了zip文件 - 甚至可能是你自己的进程。

  • 检查您的路径是否正确,例如file.exists()返回什么?
  • 检查您是否有权以运行应用程序的用户身份删除文件
  • 检查您的代码中是否没有打开文件的句柄(例如,您是否只是从中读取而未关闭输入流?)
  • 检查您是否在桌面应用中打开了文件

答案 2 :(得分:0)

这在尝试删除您创建的文件时非常常见。请务必close用于创建解压缩文件的FileWriter。

如果您无法确定关闭文件的位置,最好的选择可能是调用file.deleteOnExit(),即使您不小心打开了几个文件句柄,也应该成功。

答案 3 :(得分:0)

使用:FileUtils.delete(yourFile);

这纠正了我的问题