android – 如何使用SharedPreferences保存URI或任何存储?

前端之家收集整理的这篇文章主要介绍了android – 如何使用SharedPreferences保存URI或任何存储?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
URI imageUri = null;

//Setting the Uri of aURL to imageUri.
try {
    imageUri = aURL.toURI();
} catch (URISyntaxException e1) {
    // TODO Auto-generated catch block
    e1.printStackTrace();
}

我正在使用此代码将URL转换为URI.我怎样才能将imageUri保存到SharedPreferences,或者将其删除的内存不能删除onDestroy()?

我不想做sqlite数据库,因为当URL改变时URI会改变.我不想用掉未使用的URI的内存

解决方法

要开始使用SharedPreferences进行存储,您需要在onCreate()中使用类似的内容
SharedPreferences myPrefs = getSharedPreferences(myTag,0);
SharedPreferences.Editor myPrefsEdit = myPrefs.edit();

我认为你可以做这样的事情来存储它:

myPrefsEdit.putString("url",imageUri.toString());
myPrefsEdit.commit();

然后这样的东西来检索:

try {
    imageUri = URI.create(myPrefs.getString("url","defaultString"));
} catch (IllegalArgumentException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
}
原文链接:https://www.f2er.com/android/314053.html

猜你在找的Android相关文章