参考:http://stackoverflow.com/questions/5503487/android-failed-to-open-zip-archive
包解析错误
因为权限的问题,所以要在安装之前加上如下代码:
String path = Environment.getExternalStorageDirectory()+"/download";//此处是你下载的apk存放的文件夹地址
String permission="666";//权限
try {
String command = "chmod " + permission + " " + path;
Runtime runtime = Runtime.getRuntime();
runtime.exec(command);
} catch (IOException e) {
e.printStackTrace();
}