欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

gson的HashMapDeserializer

程序员文章站 2022-07-14 21:26:00
...
做个标记.
public class HashMapDeserializer implements
		JsonDeserializer<HashMap<String, Object>> {

	public HashMap<String, Object> deserialize(JsonElement json, Type typeOfT,
			JsonDeserializationContext context) throws JsonParseException {
		// TODO Auto-generated method stub
		if (json.isJsonNull()) {
			return null;
		} else if (json.isJsonPrimitive()) {
			return null;
		} else if (json.isJsonArray()) {
			return null;
		} else {
			return (HashMap<String, Object>) handleObject(json, context);
		}
	}

	private Object deserialize(JsonElement json,
			JsonDeserializationContext context) throws JsonParseException {
		// TODO Auto-generated method stub
		if (json.isJsonNull()) {
			return null;
		} else if (json.isJsonPrimitive()) {
			return handlePrimitive(json);
		} else if (json.isJsonArray()) {
			return handleArray(json, context);
		} else {
			return (HashMap<String, Object>) handleObject(json, context);
		}
	}

	private Object handlePrimitive(JsonElement jsonEle) {
		JsonPrimitive json = jsonEle.getAsJsonPrimitive();
		if (json.isBoolean())
			return json.getAsBoolean();
		else if (json.isString()) {
			String str = json.getAsString();
			
			return json.getAsString();
		} else {
			BigDecimal bigDec = json.getAsBigDecimal();
			try {
				bigDec.toBigIntegerExact();
				try {
					return bigDec.intValueExact();
				} catch (ArithmeticException e) {
				}
				return bigDec.longValue();
			} catch (ArithmeticException e) {
			}
			return bigDec.doubleValue();
		}
	}

	private Object handleArray(JsonElement jsonEle,
			JsonDeserializationContext context) {
		JsonArray json = jsonEle.getAsJsonArray();
		List<Object> list = new ArrayList<Object>(json.size());
		for (int i = 0; i < list.size(); i++) {
			list.add(deserialize(json.get(i), context));
		}
		return list;
	}

	private Map<String, Object> handleObject(JsonElement json,
			JsonDeserializationContext context) {
		Map<String, Object> map = new HashMap<String, Object>();
		for (Map.Entry<String, JsonElement> entry : json.getAsJsonObject()
				.entrySet()) {
			JsonElement ele = (JsonElement) entry.getValue();
			if (ele.isJsonNull()) {
				map.put(entry.getKey(), null);
			} else if (ele.isJsonPrimitive()) {
				map.put(entry.getKey(), handlePrimitive(ele));
			} else if (ele.isJsonArray()) {
				map.put(entry.getKey(), handleArray(ele, context));
			} else {
				map.put(entry.getKey(), handleObject(ele, context));
			}
		}
		return map;
	}
}
相关标签: json