我有一个问题,将zip文件的内容解压缩到SD卡上的目录。当我调试应用程序时,我可以看到错误列为java.io.FileNotFoundException:/ testFile.zip: open failed: EROFS (Read-only file system) error
我已经确定清单文件包含
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
我有点迷失了为什么我收到此消息,因为我要解压缩的内容位于SD卡上。
答案 0 :(得分:0)
记录文件夹路径并确保它们指向您期望的位置。
由于我们没有所有相关代码,因此很难准确确定问题所在,或者即使代码中存在问题也是如此。
我只是使用Here中的代码编写了一个简单的示例,并进行了测试。 也许这有助于查看一个可用作参考的工作示例,以确保您的代码正确无误。
我使用了一个包含两个嵌套文件夹和一个文本文件hello/secondFolder/hello.txt
的简单zip文件。
正如您在日志中看到的那样,它使用我设备上的虚拟sdcard
:/storage/emulated/0/
。
Decompress.java(直接来自上面的链接):
import android.util.Log;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.util.zip.ZipEntry;
import java.util.zip.ZipInputStream;
/**
*
* @author jon
*/
public class Decompress {
private String _zipFile;
private String _location;
public Decompress(String zipFile, String location) {
_zipFile = zipFile;
_location = location;
_dirChecker("");
}
public void unzip() {
try {
FileInputStream fin = new FileInputStream(_zipFile);
ZipInputStream zin = new ZipInputStream(fin);
ZipEntry ze = null;
while ((ze = zin.getNextEntry()) != null) {
Log.v("Unzip", "Unzipping " + ze.getName());
if(ze.isDirectory()) {
_dirChecker(ze.getName());
} else {
FileOutputStream fout = new FileOutputStream(_location + ze.getName());
for (int c = zin.read(); c != -1; c = zin.read()) {
fout.write(c);
}
zin.closeEntry();
fout.close();
}
}
zin.close();
} catch(Exception e) {
Log.e("Unzip", "unzip exception", e);
}
}
private void _dirChecker(String dir) {
File f = new File(_location + dir);
if(!f.isDirectory()) {
f.mkdirs();
}
}
}
MainActivity.java:
public class MainActivity extends ActionBarActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
String zipFile = Environment.getExternalStorageDirectory() + "/helloWithFolder.zip";
String unzipLocation = Environment.getExternalStorageDirectory() + "/unzipped/";
Log.d("Unzip", "Zipfile: " + zipFile);
Log.d("Unzip", "location: " + unzipLocation);
Decompress d = new Decompress(zipFile, unzipLocation);
d.unzip();
}
日志:
04-03 12:11:06.472 19427-19427/com.zipfile.daniel.zipfileextract D/Unzip﹕ Zipfile: /storage/emulated/0/helloWithFolder.zip
04-03 12:11:06.472 19427-19427/com.zipfile.daniel.zipfileextract D/Unzip﹕ location: /storage/emulated/0/unzipped/
04-03 12:11:06.472 19427-19427/com.zipfile.daniel.zipfileextract V/Unzip﹕ Unzipping hello/
04-03 12:11:06.472 19427-19427/com.zipfile.daniel.zipfileextract V/Unzip﹕ Unzipping hello/secondFolder/
04-03 12:11:06.472 19427-19427/com.zipfile.daniel.zipfileextract V/Unzip﹕ Unzipping hello/secondFolder/hello.txt
验证它已成功解压缩:
shell@jfltetmo:/sdcard $ cd unzipped
shell@jfltetmo:/sdcard/unzipped $ ls
hello
shell@jfltetmo:/sdcard/unzipped $ cd hello
shell@jfltetmo:/sdcard/unzipped/hello $ ls
secondFolder
shell@jfltetmo:/sdcard/unzipped/hello $ cd secondFolder
shell@jfltetmo:/sdcard/unzipped/hello/secondFolder $ ls
hello.txt
shell@jfltetmo:/sdcard/unzipped/hello/secondFolder $ cat hello.txt
hello
编辑: 我刚刚测试了一个糟糕的zip名称并得到了这个错误:
java.io.FileNotFoundException: /storage/emulated/0/helloBad.zip: open failed: ENOENT (No such file or directory)