gpt4 book ai didi

java - Android:无法调用没有参数的私有(private) android.net.Uri()

转载 作者:太空宇宙 更新时间:2023-11-03 12:14:29 25 4
gpt4 key购买 nike

我正在使用 Gson 将自定义模型的数组列表保存到共享首选项中

存储代码:

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;
}
}

最佳答案

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

 private String uriPath;

关于java - Android:无法调用没有参数的私有(private) android.net.Uri(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46031104/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com