Android NotSerializableException

Android NotSerializableException

我有一个名为 运行 的对象,它包含 4 个字符串、一个字符串 []、2 个浮点数 [] 和 3 个浮点数。它实现了可序列化,所以我可以将它写入一个文件。这是我用来保存文件的代码...

}else{
        run.setName(runName.getText().toString());
        FileOutputStream fos = this.openFileOutput(runName.getText().toString(), Context.MODE_PRIVATE);
        ObjectOutputStream os = new ObjectOutputStream(fos);
        os.writeObject(run);
        os.close();
        fos.close();
        Toast.makeText(this,"Run saved!", Toast.LENGTH_LONG).show();
        Intent intent = new Intent(this, MainScreen.class);
        startActivity(intent);
        finish();

    }

这工作正常,没有错误,但是当我尝试在另一个 activity 中检索它时,我得到了 NotSerializableException。这是我用来检索它的代码...

FileInputStream fileInput = this.openFileInput(name);
    ObjectInputStream objectInput = new ObjectInputStream(fileInput);
    Run run = (Run) objectInput.readObject();
    fileInput.close();
    objectInput.close();

它会导致 运行 运行 = (运行) objectInput.readObject(); 以及上述代码中的其他错误。我该如何解决这个问题?

异常中命名的class没有实现Serializable.

更改异常中命名的 class,使其实现 Serializable. 重复直到关闭。如果它是 JRE class 或另一个不受您控制的 class,您将必须首先检查为什么要尝试对其进行序列化。