寸阳分阴须爱惜,休负春色与时光。这篇文章主要讲述在Android中的SharedPreferences中存储数组的最有效方法是什么?相关的知识,希望能为你提供帮助。
【在Android中的SharedPreferences中存储数组的最有效方法是什么()】我需要在共享的首选项中存储一个数组,而不使用像Prefser或Hawk这样的外部库。我尝试过,发现两者都有很多问题。
所以我的搜索让我有了两种不同的方法:
- 使用集:
//Set the values Set< String> set = new HashSet< String> (); set.addAll(listOfExistingScores); scoreEditor.putStringSet("key", set); scoreEditor.commit(); //Retrieve the values Set< String> set = myScores.getStringSet("key", null);
- 使用字符串操作:
//Set the values StringBuilder sb = new StringBuilder(); for (int i = 0; i < playlists.length; i++) { sb.append(playlists[i]).append(","); } prefsEditor.putString(PLAYLISTS, sb.toString()); //Retrieve the values String[] playlists = playlist.split(",");
答案最有效的方法是通过ObjectSeializer存储在字符串中。
字符串会丢失数据的顺序,但ObjectSerializer会记住它。这是您可以使用的ObjectSerializer:
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.Serializable;
public class ObjectSerializer {public static String serialize(Serializable obj) throws IOException {
if (obj == null) return "";
try {
ByteArrayOutputStream serialObj = new ByteArrayOutputStream();
ObjectOutputStream objStream = new ObjectOutputStream(serialObj);
objStream.writeObject(obj);
objStream.close();
return encodeBytes(serialObj.toByteArray());
} catch (Exception e) {
throw new RuntimeException(e);
}
}public static Object deserialize(String str) throws IOException {
if (str == null || str.length() == 0) return null;
try {
ByteArrayInputStream serialObj = new ByteArrayInputStream(decodeBytes(str));
ObjectInputStream objStream = new ObjectInputStream(serialObj);
return objStream.readObject();
} catch (Exception e) {
throw new RuntimeException(e);
}
}public static String encodeBytes(byte[] bytes) {
StringBuffer strBuf = new StringBuffer();
for (int i = 0;
i <
bytes.length;
i++) {
strBuf.append((char) (((bytes[i] >
>
4) &
0xF) + ((int) 'a')));
strBuf.append((char) (((bytes[i]) &
0xF) + ((int) 'a')));
}return strBuf.toString();
}
public static byte[] decodeBytes(String str) {
byte[] bytes = new byte[str.length() / 2];
for (int i = 0;
i <
str.length();
i+=2) {
char c = str.charAt(i);
bytes[i/2] = (byte) ((c - 'a') <
<
4);
c = str.charAt(i+1);
bytes[i/2] += (c - 'a');
}
return bytes;
}}
并致电:
sharedpref.putString("data",ObjectSerializer.serialize(array1));
另一答案
JsonArray
帮助您转换和存储public static void putStringArray(Context context, String key, String[] array) {
if (context == null) {
return;
}
SharedPreferences prefs = PreferenceManager
.getDefaultSharedPreferences(context);
SharedPreferences.Editor editor = prefs.edit();
JSONArray mJSONArray = new JSONArray(Arrays.asList(array));
editor.putString(key, String.valueOf(mJSONArray));
editor.apply();
}public static String[] getStringArray(String key, Context context) {
if (context == null) {
return null;
}
SharedPreferences prefs = PreferenceManager
.getDefaultSharedPreferences(context);
String[] stringArray = new String[0];
try {
JSONArray jsonArray = new JSONArray(prefs.getString(key, ""));
int len = jsonArray.length();
stringArray = new String[len];
for (int i = 0;
i <
len;
i++) {
try {
stringArray[i] = jsonArray.getString(i);
} catch (JSONException e) {
e.printStackTrace();
}
}
} catch (JSONException e) {
e.printStackTrace();
}
return stringArray;
}
推荐阅读
- Android排序自定义对象数组
- 如何在Electron Framework中实现本机上下文菜单(带有检查元素)
- 如何在Electron Framework中实现类似选项卡的浏览器
- 如何使用Electron下载网络文件,保存并显示下载进度
- 如何在Kali Linux中安装Node.js
- 如何在Electron项目中使用实时重载
- 如何防止系统在Electron Framework中进入暂停(睡眠)模式
- 如何在Kali Linux中使用DirBuster列出网站的目录和文件
- 如何启用搜索菜单以在Electron Framework的应用程序中快速找到单词或短语