開發:隨筆記錄之 Json字串 與 List、HashMap物件的轉換
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import net.sf.json.JSONArray;
import net.sf.json.JSONObject;
import net.sf.json.JsonConfig;
import net.sf.json.util.JSONUtils;
public class JsonParser {
/**
* json字串 轉成 map
*
* @param jsonStr
* @return
* @throws Exception
*/
public static HashMap<String, JsonValue> parse(String jsonStr) {
if (jsonStr == null || "".equals(jsonStr)) { return null; }
HashMap<String, JsonValue> retMap = null;
try {
retMap = new HashMap<String, JsonValue>();
JSONObject json = JSONObject.fromObject(jsonStr);
Map<String, Object> tmpMap = (Map<String, Object>) JSONObject
.toBean(json, Map.class);
for (Map.Entry<String, Object> entry : tmpMap.entrySet()) {
JsonValue tmp = parseRec(entry.getValue(), 0);
retMap.put(entry.getKey(), tmp);
}
}
catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return retMap;
}
/**
* json字串 轉成 List
*
* @param jsonStr
* @return
* @throws Exception
*/
public static List<HashMap<String, JsonValue>> parseList(String jsonStr) {
if (jsonStr == null || "".equals(jsonStr)) { return null; }
List<HashMap<String, JsonValue>> retList = new ArrayList<HashMap<String, JsonValue>>();
JSONArray data = JSONArray.fromObject(jsonStr);
for (int i = 0; i < data.size(); i++) {
HashMap<String, JsonValue> retMap = new HashMap<String, JsonValue>();
JSONObject json = (JSONObject) data.get(i);
Map<String, Object> tmpMap = (Map<String, Object>) JSONObject
.toBean(json, Map.class);
for (Map.Entry<String, Object> entry : tmpMap.entrySet()) {
JsonValue tmp = parseRec(entry.getValue(), 0);
retMap.put(entry.getKey(), tmp);
}
retList.add(retMap);
}
return retList;
}
/**
* HashMap<String, JsonValue> map 轉成 json字串
*
* @param jsonStr
* @return
* @throws Exception
*/
public static String parse(HashMap<String, JsonValue> map) {
HashMap<String, Object> retMap = new HashMap<String, Object>();
for (Map.Entry<String, JsonValue> entry : map.entrySet()) {
Object tmp = parseJsonValueRec(entry.getValue(), 0);
retMap.put(entry.getKey(), tmp);
}
JsonConfig jc = new JsonConfig();
return JSONObject.fromObject(retMap, jc).toString();
}
/**
* List<HashMap<String, JsonValue>> list 轉成 json字串
*
* @param jsonStr
* @return
* @throws Exception
*/
public static String parse(List<HashMap<String, JsonValue>> list) {
List<HashMap<String, Object>> tmpList = new ArrayList<HashMap<String, Object>>();
for (HashMap<String, JsonValue> map : list) {
HashMap<String, Object> retMap = new HashMap<String, Object>();
for (Map.Entry<String, JsonValue> entry : map.entrySet()) {
Object tmp = parseJsonValueRec(entry.getValue(), 0);
retMap.put(entry.getKey(), tmp);
}
tmpList.add(retMap);
}
JSONArray json = new JSONArray();
json.addAll(tmpList);
return json.toString();
}
/**
* 構建json
*
* @param map
* @return
*/
public static String parse(Map map) {
JsonConfig jc = new JsonConfig();
return JSONObject.fromObject(map, jc).toString();
}
對了,json的版本我用的是json-lib-2.4-jdk15.jar
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import net.sf.json.JSONArray;
import net.sf.json.JSONObject;
import net.sf.json.JsonConfig;
import net.sf.json.util.JSONUtils;
public class JsonParser {
/**
* json字串 轉成 map
*
* @param jsonStr
* @return
* @throws Exception
*/
public static HashMap<String, JsonValue> parse(String jsonStr) {
if (jsonStr == null || "".equals(jsonStr)) { return null; }
HashMap<String, JsonValue> retMap = null;
try {
retMap = new HashMap<String, JsonValue>();
JSONObject json = JSONObject.fromObject(jsonStr);
Map<String, Object> tmpMap = (Map<String, Object>) JSONObject
.toBean(json, Map.class);
for (Map.Entry<String, Object> entry : tmpMap.entrySet()) {
JsonValue tmp = parseRec(entry.getValue(), 0);
retMap.put(entry.getKey(), tmp);
}
}
catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return retMap;
}
/**
* json字串 轉成 List
*
* @param jsonStr
* @return
* @throws Exception
*/
public static List<HashMap<String, JsonValue>> parseList(String jsonStr) {
if (jsonStr == null || "".equals(jsonStr)) { return null; }
List<HashMap<String, JsonValue>> retList = new ArrayList<HashMap<String, JsonValue>>();
JSONArray data = JSONArray.fromObject(jsonStr);
for (int i = 0; i < data.size(); i++) {
HashMap<String, JsonValue> retMap = new HashMap<String, JsonValue>();
JSONObject json = (JSONObject) data.get(i);
Map<String, Object> tmpMap = (Map<String, Object>) JSONObject
.toBean(json, Map.class);
for (Map.Entry<String, Object> entry : tmpMap.entrySet()) {
JsonValue tmp = parseRec(entry.getValue(), 0);
retMap.put(entry.getKey(), tmp);
}
retList.add(retMap);
}
return retList;
}
/**
* HashMap<String, JsonValue> map 轉成 json字串
*
* @param jsonStr
* @return
* @throws Exception
*/
public static String parse(HashMap<String, JsonValue> map) {
HashMap<String, Object> retMap = new HashMap<String, Object>();
for (Map.Entry<String, JsonValue> entry : map.entrySet()) {
Object tmp = parseJsonValueRec(entry.getValue(), 0);
retMap.put(entry.getKey(), tmp);
}
JsonConfig jc = new JsonConfig();
return JSONObject.fromObject(retMap, jc).toString();
}
/**
* List<HashMap<String, JsonValue>> list 轉成 json字串
*
* @param jsonStr
* @return
* @throws Exception
*/
public static String parse(List<HashMap<String, JsonValue>> list) {
List<HashMap<String, Object>> tmpList = new ArrayList<HashMap<String, Object>>();
for (HashMap<String, JsonValue> map : list) {
HashMap<String, Object> retMap = new HashMap<String, Object>();
for (Map.Entry<String, JsonValue> entry : map.entrySet()) {
Object tmp = parseJsonValueRec(entry.getValue(), 0);
retMap.put(entry.getKey(), tmp);
}
tmpList.add(retMap);
}
JSONArray json = new JSONArray();
json.addAll(tmpList);
return json.toString();
}
/**
* 構建json
*
* @param map
* @return
*/
public static String parse(Map map) {
JsonConfig jc = new JsonConfig();
return JSONObject.fromObject(map, jc).toString();
}
對了,json的版本我用的是json-lib-2.4-jdk15.jar
相關文章
- JSON字串與HashMap相互轉換JSON字串HashMap
- json字串與物件互相轉換JSON字串物件
- list與字串轉換字串
- Json物件與Json字串互轉JSON物件字串
- JSON字串轉換為物件直接量JSON字串物件
- JS字串轉換為JSON的四種方法筆記字串JSON筆記
- JS json字串轉物件、物件轉字串JSON字串物件
- fastjson: json物件,json物件陣列,javabean物件,json字串之間的相互轉化ASTJSON物件陣列JavaBean字串
- JavaScript將物件轉換為JSON格式字串JavaScript物件JSON字串
- eval()將JSON格式字串轉換為物件JSON字串物件
- js物件轉json字串物件JSON字串
- json 物件與json 字串的區別。JSON物件字串
- JavaScript 字串與json物件互轉的幾種方法JavaScript字串JSON物件
- js jquery 列印物件;json 物件轉字串jQuery物件JSON字串
- JSON 與 Java 物件之間的轉化JSONJava物件
- JSONObject應用Json字串和Object物件之間的轉換,Map封裝資料思路JSONObject字串物件封裝
- eval() JSON轉換為物件JSON物件
- json字串 轉換為陣列JSON字串陣列
- Dozer封裝物件或List的轉換封裝物件
- 有感而發,隨筆記錄筆記
- Redis的字串物件筆記Redis字串物件筆記
- JS實現JSON物件與URL引數的相互轉換JSON物件
- js 陣列,字串,json互相轉換陣列字串JSON
- 記錄一次Array轉換為List遇到的問題
- DataTable與List相互轉換
- 【Go】IP地址轉換:數字與字串之間高效轉換Go字串
- Json,String,Map之間的轉換JSON
- unity開發之知識記錄篇(color和string型別的相互轉換)Unity型別
- mysql時間與字串之間相互轉換MySql字串
- xml字串轉JSON字串XML字串JSON
- Apple開發_NSImage與CIImage之間的相互轉換APP
- Python筆記:string,tuple,list,dictionary的區別(之二,高階用法與型別轉換)Python筆記型別
- IOC隨筆小記錄
- 開通個人學習隨筆記錄筆記
- 20240505記錄《程式碼隨想錄》筆記筆記
- jenkins:實現Jenkinsfile與Json的轉換JenkinsJSON
- jQuery物件和DOM物件和字串之間的轉化jQuery物件字串
- 把JSON資料格式轉換為Python的類物件JSONPython物件
- IOS筆記之字串iOS筆記字串