com.alibaba.fastjson和org.json遍历获取key

推荐都是用fastjson。org.json好像不支持序列化。

com.alibaba.fastjson遍历获取key的方法:

//fastjson解析方法
for (Map.Entry<String, Object> entry : headers.entrySet()) {
requestSpecification = requestSpecification.header(entry.getKey(), entry.getValue());
}

org.json遍历获取key方法:

//org.json.JSONObject解析方法
Iterator<String> headerkeys = headers.keys();
while (headerkeys.hasNext()) {
String headerkey = headerkeys.next();
String headerValue = headers.getString(headerkey);
requestSpecification = requestSpecification.header(headerkey, headerValue);
}
上一篇:hdoj 2222


下一篇:Hadoop分布式模式下SSH免密码登录