0

我在安装保存在 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 将可供用户使用,我不希望这样。

将文件保存在内部缓存中可以做什么?

谢谢

4

2 回答 2

3

看起来内部缓存不允许正确读取 APK。

那是因为安装程序应用程序无权读取您的文件。

事实是,如果文件保存在外部存储或外部缓存中,APK 将可供用户使用,我不希望这样。

然后不要将其安装在用户的设备上。任何用户都可以在安装后随时从他们的设备上复制任何 APK,因此阻止用户访问 APK 的唯一方法是一开始就将其放在设备上。

将文件保存在内部缓存中可以做什么?

大概什么都没有。如果您切换到openFileOutput(),您可以查看是否MODE_WORLD_READABLE足以让安装程序继续进行。同样,这不会阻止用户访问 APK 文件。

于 2012-09-24T19:09:13.200 回答
0

尝试查看 chmod 命令以获取内部文件夹的读\写权限...至于 linux 它看起来像...

 chmod 777 /data/data/*** or chmod 644 /data/data/***
于 2012-09-24T19:07:40.917 回答