我正在尝试解压缩存储在原始文件夹中的 zip 文件。代码如下
try
{
File myDir = new File(getFilesDir().getAbsolutePath());
File newFile = new File(myDir + "/imageFolder");
if(!newFile.exists())
{
newFile.mkdir();
}
ZipInputStream zipIs = new ZipInputStream(con
.getResources().openRawResource(R.raw.images));
ZipEntry ze = null;
while ((ze = zipIs.getNextEntry()) != null)
{
Log.v("Name", ze.getName());
Log.v("Size", "" + ze.getSize());
if(ze.getSize() >0)
{
FileOutputStream fout = new FileOutputStream(newFile
+ "/" + ze.getName());
byte[] buffer = new byte[1024];
int length = 0;
while ((length = zipIs.read(buffer)) > 0)
{
fout.write(buffer, 0, length);
}
zipIs.closeEntry();
fout.close();
}
}
zipIs.close();
} catch (Exception e)
{
e.printStackTrace();
}
但我不断收到此错误
01-18 11:24:28.301: W/System.err(2285): java.io.FileNotFoundException: /data/data/com.example.ziptests/files/imageFolder/TestImages/background.png (不是目录)
我完全不知道为什么会导致这种情况,它会找到文件,但是在将它们写出来时,会出现该错误。最初我发现一个问题是由于将 zip 文件压缩到 mac 上引起的,所以我将文件压缩到我的 windows 机器上,这样就解决了一个问题(当你在 mac 上压缩时,它会添加这些额外的文件夹以及诸如 store.ds 之类的文件,这会在尝试解压缩时导致错误),但这不是目录错误不断出现。
任何想法为什么会发生这种情况?