Android:无法调用没有args的私有android.net.Uri()

时间:2017-09-04 06:02:30

标签: java android gson sharedpreferences

我使用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;
    }
}

2 个答案:

答案 0 :(得分:7)

Uri类构造函数是私有的,它是一个抽象类。 Gson尝试使用Reflection API为Uri类创建一个新对象(我们不能为抽象类创建一个对象)。如此简单的解决方案是将uriPath更改为String而不是Uri

 private String uriPath;

答案 1 :(得分:0)

meh,只需排除 有问题的实例变量 序列化/反序列化过程。 Gson: How to exclude specific fields from Serialization without annotations