如果 POI 在我的数据库中,例如 POINT(-lat long) 用于我的数据库中的位置,那么如何以 json 结构传递 mixare 中的数据库数据。
这些是 json 结构: http ://code.google.com/p/mixare/wiki/DisplayYourOwnData
请尽快建议我一些带有步骤的输出?
如果 POI 在我的数据库中,例如 POINT(-lat long) 用于我的数据库中的位置,那么如何以 json 结构传递 mixare 中的数据库数据。
这些是 json 结构: http ://code.google.com/p/mixare/wiki/DisplayYourOwnData
请尽快建议我一些带有步骤的输出?
我会坚持你GSON
在这种情况下使用并将数据从数据库中提取到 HashMap/List 或任何可以轻松转换为的集合中JSONObject
or JSONArray
,
例如:-
Map<String, Object> map = new HashMap<String, Object>();
map.put("name", "Sriram");
map.put("age", 2);
map.put("dob", new Date(110, 4, 6));
map.put("hobby", "painting");
Gson gson = new GsonBuilder().setPrettyPrinting().create();
String jsonStr = gson.toJson(map);
System.out.println(jsonStr);
输出:
{
"dob": "May 6, 2010 12:00:00 AM",
"age": 2,
"name": "Sriram",
"hobby": "painting"
}
结帐this
链接,用于从集合到 JSON 和 JSON 到集合的进一步转换。