如何将Hashmap转换为String以保存在SQLite数据库中?

我需要找到一种方法来将HashMap保存为字符串以保存在我的sqlite数据库中以便在以后的阶段进行检索.

这是我的HashMap:

private Map<String, Bitmap> myMarkersHash new HashMap<String, Bitmap>();

然后保存到sqlite数据库时:

contentValues.put(LocationsDB.FIELD_HASH, myMarkersHash);

但问题是我在contentValues.put下输入错误时出现此错误

The method put(String, String) in the type ContentValues is not applicable for the arguments (String, Map<String,Bitmap>)

所以我的问题是如何将其转换为字符串,以便我可以将其保存到我的sqlite数据库

谢谢

解决方法:

您可以使用Gson库将HashMap转换为String,从而将HashMap存储在数据库中.
该库将您的对象转换为String,您可以随时获取该对象.
链接到下载Lib:https://code.google.com/p/google-gson/

将对象转换为字符串:

Gson objGson= new Gson();
String strObject = objGson.toJson(myMarkersHash);
Bundle bundle = new Bundle();
bundle.putString("key", strObject);

将String转换为Object:

Gson gson = new Gson();
Type type = new Typetoken<Model>() {}.getType();
myMarkersHash = gson.fromJson(bundle.getString("key"), type);

也请查看此示例:http://www.java2blog.com/2013/11/gson-example-read-and-write-json.html

相关文章

SQLite架构简单,又有Json计算能力,有时会承担Json文件/RES...
使用Python操作内置数据库SQLite以及MySQL数据库。
破解微信数据库密码,用python导出微信聊天记录
(Unity)SQLite 是一个软件库,实现了自给自足的、无服务器...
安卓开发,利用SQLite实现登陆注册功能