我在安装保存在 Android 内部缓存中的 APK 时遇到问题。使用context.getExternalCacheDir()将文件保存在外部存储或外部缓存中没有问题。
但是如果我尝试使用context.getCacheDir(),日志会返回
/data/data/com.my.package/cache/update.apk:打开失败:EACCES(权限被拒绝)
File file = context.getCacheDir();
File outputFile = new File(file, "update.apk");
if(outputFile.exists()){
outputFile.delete();
}
FileOutputStream fos = new FileOutputStream(outputFile);
InputStream is = c.getInputStream();
byte[] buffer = new byte[1024];
int len1 = 0;
while ((len1 = is.read(buffer)) != -1) {
fos.write(buffer, 0, len1);
}
fos.close();
is.close();
Intent intent = new Intent(Intent.ACTION_VIEW);
//SAVE IN CACHE
intent.setDataAndType(Uri.fromFile(outputFile), "application/vnd.android.package-archive");
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); // without this flag android returned a intent error!
context.startActivity(intent);
看起来内部缓存不允许正确读取 APK。
事实是,如果文件保存在外部存储或外部缓存中,APK 将可供用户使用,我不希望这样。
将文件保存在内部缓存中可以做什么?
谢谢