遍历HashMap并放入jsonObject:
Iterator it = mp.entrySet().iterator();while (it.hasNext()) { Map.Entry pairs = (Map.Entry)it.next(); jsonObject.put(pairs.getKey(), pairs.getValue() );}
欢迎分享,转载请注明来源:内存溢出
遍历HashMap并放入jsonObject:
Iterator it = mp.entrySet().iterator();while (it.hasNext()) { Map.Entry pairs = (Map.Entry)it.next(); jsonObject.put(pairs.getKey(), pairs.getValue() );}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)