尝试{
File f = new File("/data/cizip.zip");
if(f.exists()){
ZipFile zf = new ZipFile(f); //this always throws an error
/*some of my codes here*/
}
catch(IOException e){
AlertDialog.Builder abd = new AlertDialog.Builder(this);
abd.setMessage(e.getMessage());
abd.show();
}
该行ZipFile zf = new ZipFile(f);
总是抛出一个错误,我不知道为什么。并且错误消息是文件名(“/data/cizip.zip”),因此我不知道错误的原因。有人可以告诉我是什么导致了这个错误吗?提前致谢。