这里使用了com.alibaba.fastjson这个包maven【很不错的包管理器】安装方式:
com.alibaba
fastjson
1.2.12
使用方法import com.alibaba.fastjson.JSON;//字符串转换为可使用的对象【Map】String str = "";//这里就是一个json 字符串
JSON.parseObject(str);
HashMap jsonMap = JSON.parseObject(str, new HashMap().getClass());
//去除里面的值
for(String key : jsonMap.keySet()) {
String str = jsonMap.get(key);
System.out.println(key + ":" + str);
}
//将 对象 【HashMap】转化为json 字符串
HashMap map = new HashMap();
map.put("data","data");
map.put("sign","sign");
String jsonString = JSON.toJSONString(map);这里设置路由跟请求回调方法get("/jsontest", "application/json", (req, res) -> {
//实现结果的代码,比如上面生成的结果 jsonString
//return jsonString
});==========================================Spark Framework - A tiny Java web framework==========================================