小编典典

序列化Drawable时出现问题

java

我有一个包含三个字段的单一对象:两个字符串和一个 Drawable

public class MyObject implements Serializable {

    private static final long serialVersionUID = 1L;
    public String name;
    public String lastName;
    public Drawable photo;

    public MyObject() {
    }

    public MyObject(String name, String lastName, Drawable photo) {

        this.name = name;
        this.lastName = lastName;
        this.photo = photo;
    }
}

我想做的是将ArrayList这些对象中的一个保存到文件中,但是我不断收到NotSerializableException

02-02 23:06:10.825: WARN/System.err(13891): java.io.NotSerializableException: android.graphics.drawable.BitmapDrawable

我用来存储文件的代码:

public static void saveArrayList(ArrayList<MyObject> arrayList, Context context) {

    final File file = new File(context.getCacheDir(), FILE_NAME);
    FileOutputStream outputStream = null;
    ObjectOutputStream objectOutputStream = null;

    try {
        outputStream = new FileOutputStream(file);
        objectOutputStream  = new ObjectOutputStream(outputStream);

        objectOutputStream.writeObject(arrayList);
    }

    catch(Exception e) {
        e.printStackTrace();
    }
    finally {
        try {
            if(objectOutputStream != null) {
                objectOutputStream.close();
            }
            if(outputStream != null) {
                outputStream.close();
            }
        }
        catch (Exception e) {
            e.printStackTrace();
        }
    }
}

未初始化drawable时,一切正常。在此先感谢您的帮助。


阅读 493

收藏
2020-11-26

共1个答案

小编典典

java.io.NotSerializableException: android.graphics.drawable.BitmapDrawable

该消息看起来非常清晰-
photo字段中的特定drawable实例是BitmapDrawable,该对象并非旨在进行序列化。如果不处理不可序列化的字段,则无法序列化您的类。

如果可以确保您的类将始终具有BitmapDrawableBitmap,则可以查看以下代码以获取有关如何处理Bitmap字段的示例:

2020-11-26