JAVA獲取json中的全部鍵值對

落地僧發表於2016-01-28
package com.unionx.wanxue;

import java.util.Map;
import java.util.Map.Entry;
import net.sf.json.JSONObject;
/**
 * 利用jsonObject轉map,獲取json中的全部鍵值對
 * 在迴圈中新增條件,也可以獲取到特定的鍵值對
 * 注意導包
 */
public class test {
	@SuppressWarnings("unchecked")
	public static void main(String args[]){ 
		JSONObject json1=JSONObject.fromObject("{'username' : '11111','clientid' : '','password' : '222222'}");
		Map<String, Object> map =json1;
		for (Entry<String, Object> entry : map.entrySet()) {
			System.out.println(entry.getKey()+"="+entry.getValue());
		}   
	}
}

相關文章