在android中保存,读取和保护apps目录的数据

时间:2016-06-01 12:43:19

标签: android file security android-internal-storage

我正在尝试将文件保存到内部存储器中,而且应该只能由我的应用程序读取。 到现在为止我已经尝试过了。

  String filesave  =     Environment.getExternalStorageDirectory()+""+getFilesDir()+"/.fkfk";
    File f = new File(filesave);
    if (!f.exists()){
        f.mkdir();
    }
File sd = Environment.getExternalStorageDirectory();
    Log.e("files", Environment.getExternalStorageDirectory()+f.getAbsolutePath());
String path  = Environment.getExternalStorageDirectory()+"/.NEWFolders/hdfc0002.jpg";
    File toCopy = new File(path);
    if (toCopy.exists()){
        Log.e("ok","got the path");
        try{
            if (sd.canWrite()) {
                File source= toCopy;
                File destination=f;
                if (source.exists()) {
                    FileChannel src = new FileInputStream(source).getChannel();
                    FileChannel dst = new FileOutputStream(destination).getChannel();
                    if (dst != null && source != null) {
                        dst.transferFrom(src, 0, src.size());
                    }
                    if (src != null) {
                        src.close();
                    }
                    if (dst != null) {
                        dst.close();
                    }
                }else {
                    FileChannel src = new FileInputStream(source).getChannel();
                    FileChannel dst = new FileOutputStream(destination).getChannel();
                    if (dst != null && source != null) {
                        dst.transferFrom(src, 0, src.size());
                    }
                    if (src != null) {
                        src.close();
                    }
                    if (dst != null) {
                        dst.close();
                    }
                }
            }
        }catch (FileNotFoundException e){
            e.printStackTrace();
        }catch (IOException e){
            e.printStackTrace();
        }

    }

但是此代码段正在抛出FileNotFound异常。 请建议我一样。 提前致谢

1 个答案:

答案 0 :(得分:2)

这是混乱的:

Environment.getExternalStorageDirectory()+""+getFilesDir()+"/.fkfk";

Environment.getExternalStorageDirectory和上下文的getFiledDir()方法指的是两个完全不同的位置 - 第一个位于主“外部存储”(这些日子通常是设备的永久部分),以及在应用程序的私人存储区域中排名第二。

您应该只使用其中一种方法来发现最适合您目标的位置。您可以在Android文档中咨询Storage OptionsSaving Files以帮助您做出决定。如果您希望某些内容仅由您的应用程序使用,您通常需要内部存储 - 即getFilesDir()。

选择位置后,您需要使其余代码与之保持一致。