如何将HashMap保存到共享首选项?


Answers:


84

我不建议将复杂对象写入SharedPreference。相反,我会习惯将ObjectOutputStream其写入内部存储器。

File file = new File(getDir("data", MODE_PRIVATE), "map");    
ObjectOutputStream outputStream = new ObjectOutputStream(new FileOutputStream(file));
outputStream.writeObject(map);
outputStream.flush();
outputStream.close();

6
用一个ObjectInputStream。
Kirill Rakhman 2012年

5
这是一个如何一起使用ObjectOutputStream和ObjectInputStream的示例:tutorialspoint.com/java/io/objectinputstream_readobject.htm
Krzysztof Skrzynecki 2015年

从什么时候开始Hashmap是一个复杂的对象?您如何假设的?
Pedro Paulo Amorim

78

Gson用来转换HashMapString然后保存到SharedPrefs

private void hashmaptest()
{
    //create test hashmap
    HashMap<String, String> testHashMap = new HashMap<String, String>();
    testHashMap.put("key1", "value1");
    testHashMap.put("key2", "value2");

    //convert to string using gson
    Gson gson = new Gson();
    String hashMapString = gson.toJson(testHashMap);

    //save in shared prefs
    SharedPreferences prefs = getSharedPreferences("test", MODE_PRIVATE);
    prefs.edit().putString("hashString", hashMapString).apply();

    //get from shared prefs
    String storedHashMapString = prefs.getString("hashString", "oopsDintWork");
    java.lang.reflect.Type type = new TypeToken<HashMap<String, String>>(){}.getType();
    HashMap<String, String> testHashMap2 = gson.fromJson(storedHashMapString, type);

    //use values
    String toastString = testHashMap2.get("key1") + " | " + testHashMap2.get("key2");
    Toast.makeText(this, toastString, Toast.LENGTH_LONG).show();
}

2
如何从GSON获得的HashMap我有错误味精一样com.qb.gson.JsonSyntaxException:java.lang.IllegalStateException:预期BEGIN_OBJECT但行1列2 BEGIN_ARRAY -
拉姆

预期发生BEGIN_OBJECT,但发生了BEGIN_ARRAY,因为HashMap <String,String>应该是HashMap <String,Object>,如果值始终是String对象,则不会有任何问题,但是如果某个键的值是diff然后是String(例如,自定义对象,列表或数组),则将引发异常。因此,要能够解析出您需要的所有内容,请HashMap <String,Object>
Stoycho Andreev

43

我编写了一段简单的代码,将地图保存为首选项,并从首选项加载地图。无需GSON或Jackson功能。我只是使用了一个以String为键和Boolean为值的映射。

private void saveMap(Map<String,Boolean> inputMap){
  SharedPreferences pSharedPref = getApplicationContext().getSharedPreferences("MyVariables", Context.MODE_PRIVATE);
  if (pSharedPref != null){
    JSONObject jsonObject = new JSONObject(inputMap);
    String jsonString = jsonObject.toString();
    Editor editor = pSharedPref.edit();
    editor.remove("My_map").commit();
    editor.putString("My_map", jsonString);
    editor.commit();
  }
}

private Map<String,Boolean> loadMap(){
  Map<String,Boolean> outputMap = new HashMap<String,Boolean>();
  SharedPreferences pSharedPref = getApplicationContext().getSharedPreferences("MyVariables", Context.MODE_PRIVATE);
  try{
    if (pSharedPref != null){       
      String jsonString = pSharedPref.getString("My_map", (new JSONObject()).toString());
      JSONObject jsonObject = new JSONObject(jsonString);
      Iterator<String> keysItr = jsonObject.keys();
      while(keysItr.hasNext()) {
        String key = keysItr.next();
        Boolean value = (Boolean) jsonObject.get(key);
        outputMap.put(key, value);
      }
    }
  }catch(Exception e){
    e.printStackTrace();
  }
  return outputMap;
}

完美的答案:)
Ramkesh Yadav '18

如何getApplicationContext从一个简单的班级访问?
德米特里'18

@Dmitry快捷方式:在您的简单类中,包括设置上下文方法并将上下文设置为成员变量并相应地使用它
Vinoj John Hosan

32
Map<String, String> aMap = new HashMap<String, String>();
aMap.put("key1", "val1");
aMap.put("key2", "val2");
aMap.put("Key3", "val3");

SharedPreferences keyValues = getContext().getSharedPreferences("Your_Shared_Prefs"), Context.MODE_PRIVATE);
SharedPreferences.Editor keyValuesEditor = keyValues.edit();

for (String s : aMap.keySet()) {
    keyValuesEditor.putString(s, aMap.get(s));
}

keyValuesEditor.commit();

但我需要像自己将哈希图保存一样,将向量添加到共享首选项中
jibysthomas 2011年

则不必使用序列化并将序列化的HashMap保存在SharedPrefs中。您可以轻松找到有关如何执行此操作的代码示例。
hovanessyan 2011年

11

作为从Vinoj John Hosan的答案中衍生出来的,我修改了答案,以根据数据键而不是像单个键那样进行更通用的插入 "My_map"

在我的实现中,MyApp是我的Application重写类,并MyApp.getInstance()用于返回context

public static final String USERDATA = "MyVariables";

private static void saveMap(String key, Map<String,String> inputMap){
    SharedPreferences pSharedPref = MyApp.getInstance().getSharedPreferences(USERDATA, Context.MODE_PRIVATE);
    if (pSharedPref != null){
        JSONObject jsonObject = new JSONObject(inputMap);
        String jsonString = jsonObject.toString();
        SharedPreferences.Editor editor = pSharedPref.edit();
        editor.remove(key).commit();
        editor.putString(key, jsonString);
        editor.commit();
    }
}

private static Map<String,String> loadMap(String key){
    Map<String,String> outputMap = new HashMap<String,String>();
    SharedPreferences pSharedPref = MyApp.getInstance().getSharedPreferences(USERDATA, Context.MODE_PRIVATE);
    try{
        if (pSharedPref != null){
            String jsonString = pSharedPref.getString(key, (new JSONObject()).toString());
            JSONObject jsonObject = new JSONObject(jsonString);
            Iterator<String> keysItr = jsonObject.keys();
            while(keysItr.hasNext()) {
                String k = keysItr.next();
                String v = (String) jsonObject.get(k);
                outputMap.put(k,v);
            }
        }
    }catch(Exception e){
        e.printStackTrace();
    }
    return outputMap;
}

如何从库访问MyApp?
德米特里(Dmitry)'18年

@Dmitry您将以与Context从库访问实例相同的方式执行此操作。看看另一个SO问题:是否可以在Android Library Project中获取应用程序的上下文?
凯尔·法尔康纳

2

您可以尝试使用JSON代替。

为了节省

try {
    HashMap<Integer, String> hash = new HashMap<>();
    JSONArray arr = new JSONArray();
    for(Integer index : hash.keySet()) {
        JSONObject json = new JSONObject();
        json.put("id", index);
        json.put("name", hash.get(index));
        arr.put(json);
    }
    getSharedPreferences(INSERT_YOUR_PREF).edit().putString("savedData", arr.toString()).apply();
} catch (JSONException exception) {
    // Do something with exception
}

为了得到

try {
    String data = getSharedPreferences(INSERT_YOUR_PREF).getString("savedData");
    HashMap<Integer, String> hash = new HashMap<>();
    JSONArray arr = new JSONArray(data);
    for(int i = 0; i < arr.length(); i++) {
        JSONObject json = arr.getJSONObject(i);
        hash.put(json.getInt("id"), json.getString("name"));
    }
} catch (Exception e) {
    e.printStackTrace();
}

1
String converted = new Gson().toJson(map);
SharedPreferences sharedPreferences = getSharedPreferences("sharepref",Context.MODE_PRIVATE);
sharedPreferences.edit().putString("yourkey",converted).commit();

1
如何将其返回给Map?
زياد

1

使用PowerPreference

保存数据

HashMap<String, Object> hashMap = new HashMap<String, Object>();
PowerPreference.getDefaultFile().put("key",hashMap);

读取数据

HashMap<String, Object> value = PowerPreference.getDefaultFile().getMap("key", HashMap.class, String.class, Object.class);

1

映射->字符串

val jsonString: String  = Gson().toJson(map)
preferences.edit().putString("KEY_MAP_SAVE", jsonString).apply()

字符串->地图

val jsonString: String = preferences.getString("KEY_MAP_SAVE", JSONObject().toString())
val listType = object : TypeToken<Map<String, String>>() {}.type
return Gson().fromJson(jsonString, listType)

0

您可以在专用的共享prefs文件中使用它(源:https : //developer.android.com/reference/android/content/SharedPreferences.html):

得到所有

已在API级别1中添加。Map getAll()从首选项中检索所有值。

请注意,您不得修改此方法返回的集合,也不得更改其任何内容。如果这样做,则不能保证所存储数据的一致性。

返回映射返回一个映射,该映射包含代表首选项的键/值对对的列表。


0

懒惰的方式:将每个密钥直接存储在SharedPreferences中

对于狭窄的用例,当您的地图仅包含不超过几十个元素时,您可以利用SharedPreferences的工作原理与地图非常相似的事实,只需将每个条目存储在其自己的键下即可:

储存地图

Map<String, String> map = new HashMap<String, String>();
map.put("color", "red");
map.put("type", "fruit");
map.put("name", "Dinsdale");


SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
// OR use a specific pref name
// context.getSharedPreferences("myMegaMap");

for (Map.Entry<String, String> entry : map.entrySet()) {
    prefs.edit().putString(entry.getKey(), entry.getValue());
}

从地图上读取按键

SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
// OR use a specific pref name
// context.getSharedPreferences("myMegaMap");
prefs.getString("color", "pampa");

如果您使用自定义首选项名称(即context.getSharedPreferences("myMegaMap")),则还可以使用prefs.getAll()

你的价值观可以通过SharedPreferences支持任何类型:Stringintlongfloatboolean


0

我知道为时已晚,但我希望这对任何人阅读都可以有所帮助。

所以我要做的是

1)创建HashMap并添加以下数据:

HashMap hashmapobj = new HashMap();
  hashmapobj.put(1001, "I");
  hashmapobj.put(1002, "Love");
  hashmapobj.put(1003, "Java");

2)将其写入共享偏好编辑器,如:-

SharedPreferences sharedpreferences = getSharedPreferences(MyPREFERENCES,Context.MODE_PRIVATE);
    Editor editor = sharedpreferences.edit();
    editor.putStringSet("key", hashmapobj );
    editor.apply(); //Note: use commit if u wan to receive response from shp

3)在新的类中读取想要读取的数据:-

   HashMap hashmapobj_RECIVE = new HashMap();
     SharedPreferences sharedPreferences (MyPREFERENCES,Context.MODE_PRIVATE;
     //reading HashMap  from sharedPreferences to new empty HashMap  object
     hashmapobj_RECIVE = sharedpreferences.getStringSet("key", null);
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.