0

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

  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 异常。请同样建议我。提前致谢

4

1 回答 1

2

这是混在一起的:

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

Environment.getExternalStorageDirectoryContext的getFiledDir()方法指的是两个完全不同的位置——第一个在主要的“外部存储”(现在通常是设备的永久部分)上,第二个在应用程序的私有存储区域。

您应该只使用其中一种方法来发现最适合您目标的位置。您可以参考Android 文档中的存储选项保存文件来帮助您做出决定。如果您希望某些东西仅供您的应用程序使用,您通常需要内部存储 - 即 getFilesDir()。

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

于 2016-06-01T12:49:45.603 回答