본문 바로가기

개발이모저모

[JAVA] Map to JSONObject

Map형태인 것을 JSONObject로 변환하는 코드!

// paramMap의 자료형 : Map<String,Object>
       
       JSONObject jsonObject = new JSONObject();
	   
       String key = "";
       Object value = null;
	   
       for(Map.Entry<String, Object> entry : paramMap.entrySet()) {
	        key = entry.getKey();
	        value = entry.getValue();
	        jsonObject.put(key, value);
      }