在Android中的SharedPreferences中存储数组的最有效方法是什么?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在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(",");
问题:当项目的顺序无关紧要且我有大量项目(比如> 300)时,更有效的方法是什么?
答案
最有效的方法是通过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中的SharedPreferences中存储数组的最有效方法是什么?的主要内容,如果未能解决你的问题,请参考以下文章
SharedPreferences.Editor 的apply()与commit()方法的区别