android:调用没有参数的私有android.net.uri()失败

xbp102n0  于 2021-07-03  发布在  Java
关注(0)|答案(2)|浏览(640)

我正在使用gson将自定义模型的arraylist保存到共享首选项中
存储代码:

ArrayList<DownloadProgressDataModel> arrayList = getArrayListFromPref(downloadProgressDataModel);
        SharedPreferences.Editor prefsEditor = getSharedPreferences("APPLICATION_PREF", MODE_PRIVATE).edit();

        Gson gson = new Gson();
        String json = gson.toJson(arrayList);
        prefsEditor.putString("DownloadManagerList", json);
        prefsEditor.apply();
    }

检索

ArrayList<DownloadProgressDataModel> arrayList;
        Gson gson = new Gson();

        SharedPreferences  mPrefs = getSharedPreferences("APPLICATION_PREF", MODE_PRIVATE);
        String json = mPrefs.getString("DownloadManagerList", "");

        if (json.isEmpty()) {
            arrayList = new ArrayList<DownloadProgressDataModel>();
        } else {
            Type uriPath = new TypeToken<ArrayList<DownloadProgressDataModel>>() {
            }.getType();
            arrayList = gson.fromJson(json, uriPath);  <------ Error line
        }

但我得到的错误是:不能示例化android.net.uri类
型号

public class DownloadProgressDataModel {
    private Uri uriPath;
    private long referenceId;

    public Uri getUriPath() {
        return uriPath;
    }

    public void setUriPath(Uri uriPath) {
        this.uriPath = uriPath;
    }

    public long getReferenceId() {
        return referenceId;
    }

    public void setReferenceId(long referenceId) {
        this.referenceId = referenceId;
    }
}
pb3s4cty

pb3s4cty1#

meh,只需从序列化/反序列化过程中排除有问题的示例变量。gson:如何从没有注解的序列化中排除特定字段

7gyucuyw

7gyucuyw2#

uri类构造函数是私有的,是一个抽象类。gson尝试为 Uri 使用反射api初始化(我们不能为抽象类创建对象)。所以简单的解决办法就是改变 uriPath 进入 String 而不是 Uri .

private String uriPath;

相关问题