0

我有这段代码可以将浮点数组保存到文件中以备将来使用。但是当我按照saveArray("the x",x); x 是我要保存的浮点数组的顺序调用它时,它会将 Null 返回到文件而不是创建。

public void saveArray(String filename, float[] array) {
         try {
            FileOutputStream fos = new FileOutputStream(filename);
            ObjectOutputStream out = new ObjectOutputStream(fos);
            out.writeObject(array);

            out.flush();
            out.close();
         }
         catch (IOException e) {
             System.out.println(e); 
         }
      }

     public float[] loadArray(String filename) {
          try {
            FileInputStream fis = new FileInputStream(filename);
            ObjectInputStream in = new ObjectInputStream(fis);
            float[] saved_array = (float[])in.readObject();
            in.close();
            return saved_array;
          }
          catch (Exception e) {
              System.out.println(e);
          }
          return null;
      }

这就是我尝试保存时返回的内容

05-04 07:21:59.547: I/System.out(622): java.io.FileNotFoundException: /the x: open failed: EROFS (Read-only file system)
05-04 07:21:59.547: I/System.out(622): java.io.FileNotFoundException: /the x: open failed: ENOENT (No such file or directory)
05-04 07:21:59.557: I/System.out(622): null

EDIT2:我找到了解决方案,但我需要更多帮助!

我像以前一样离开了 saveArray,我之前创建了一个目录和一个文件。

final File dir = new File(context.getFilesDir() + "/works");
dir.mkdirs(); 
final File file = new File(dir, "the_x.txt");
saveArray(file.getPath()+file.getName(),x);

而且似乎得救了。现在,我尝试将它加载到另一个数组上,但新数组“a”永远不会改变值。你认为错误在哪里?在上面查看我的 loadArray 函数。我试试这些:

a = loadArray(file.getPath()+file.getName());
a = loadArray(file.getName());
a = loadArray(file.getPath());
a = loadArray("the_x.txt");
4

1 回答 1

0

如果您在 sd 卡中写入文件,那么您需要以下权限

<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" >
</uses-permission>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" >
</uses-permission>

因此你filanem应该是这样的"/sdcard/yourfile.txt"

你可以用别的东西

利用

        ObjectOutputStream objectOutputStream = new ObjectOutputStream(
                context.openFileOutput(
                        filename, Context.MODE_PRIVATE));
于 2013-05-04T07:33:36.297 回答