我希望以字符串格式存储一些数据,然后使用android中的gson再次从该字符串中检索对象。
我的存储功能是
public void storeData(HashMap<String, List<String>> data) {
String d = new Gson().toJson(data);
storeToXYZ(d);
}
获取数据功能
public HashMap<String, List<String>> getData() {
String d = getFromXYZ();
// Assume not default data present
if(!d.equals("")) {
Type type = new TypeToken<HashMap<String, List<String>>>(){}.getType();
return new Gson().fromJson(d, type);
}
return null;
}
我在getData()函数
中遇到此错误return new Gson().fromJson(d, type);
堆栈跟踪
java.lang.ClassCastException:com.google.gson.internal.LinkedTreeMap无法强制转换为java.util.HashMap
提前致谢。
答案 0 :(得分:1)
尝试将HashMap
更改为Map
:
Type type = new TypeToken<Map<String, List<String>>>(){}.getType();
LinkedTreeMap<K, V> extends AbstractMap<K, V>
AbstractMap
继承自Map
界面,而不是HashMap
答案 1 :(得分:0)
我的项目有什么:
1) private HashMap<String, File> imagesMap;<br>
2) sharedPreferencesEditor.putString(IMAGES_MAP_KEY, new Gson().toJson(imagesMap)).apply();<br>
3) imagesMap = new Gson().fromJson(imagesMapString, new TypeToken<HashMap<String, File>>(){}.getType());
效果很好。
BTW,我用左
compile 'com.google.code.gson:gson:2.8.1'
in dependencies。
请检查gson版本,同时请确保将HashMap准确转移到storeData()
。
好的,让我们尝试另一种方式:
我创建了新项目,在依赖项中添加了gson。这是MainActivity的代码:
package com.example.eugenegoltsev.hashmaptest;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import com.google.gson.Gson;
import com.google.gson.reflect.TypeToken;
import java.lang.reflect.Type;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
public class MainActivity extends AppCompatActivity {
private HashMap<String, List<String>> data;
private String jsonString;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
initData();
storeData(data);
HashMap<String, List<String>> data2 = getData();
}
private void initData() {
data = new HashMap<>();
List<String> list1 = new ArrayList<>();
list1.add("l1 one");
list1.add("l1 two");
list1.add("l1 three");
List<String> list2 = new ArrayList<>();
list2.add("l2 one");
list2.add("l2 two");
list2.add("l2 three");
data.put("First", list1);
data.put("Second", list2);
}
public void storeData(HashMap<String, List<String>> data) {
jsonString = new Gson().toJson(data);
}
public HashMap<String, List<String>> getData() {
Type type = new TypeToken<HashMap<String, List<String>>>(){}.getType();
return new Gson().fromJson(jsonString, type);
}
}
getData()
效果很好,就像它应该的那样
所以你的问题就在其他地方。
您可以像我的代码一样创建测试HashMap并使用它进行测试。