3

我使用以下代码将文件存储在设备上运行的应用程序的内部存储中。

private void writeToFile(String s){
 try { // catches IOException below
        FileOutputStream fOut = openFileOutput("samplefile.txt",
                                                MODE_WORLD_READABLE);
        OutputStreamWriter osw = new OutputStreamWriter(fOut); 
        osw.write(s);
        osw.flush();
        osw.close();
        FileInputStream fIn = openFileInput("samplefile.txt");
        InputStreamReader isr = new InputStreamReader(fIn);
        char[] inputBuffer = new char[s.length()];
        isr.read(inputBuffer);
        String readString = new String(inputBuffer);
        Log.i("String", readString);

    } catch (IOException ioe) {
        ioe.printStackTrace();
    }
}  

logcat 显示文件已正确写入。但是,当尝试在 Eclipse 上使用 FileExplorer 访问设备上的文件时,看不到文件应该在的位置(“/data/data/your_project_package_structure/files/samplefile.txt”)。我发现内部数据文件夹为空。什么地方出了错?

我想读取该文件并获取数据以提供另一个用 python 编写的应用程序。可能吗?

PS:我正在设备上而不是模拟器上测试应用程序。

4

1 回答 1

2

在进一步的研究中,我发现存储在内部存储中的文件只有在使用模拟器时才能在文件资源管理器中看到。所以看起来我不得不求助于外部存储。

于 2011-04-19T11:59:46.697 回答