본문으로 바로가기

JSON String to VO object

category JAVA/SOURCECODE 2021. 8. 31. 15:53

 

import net.sf.json.JSONObject

customVO customVO = new CustomVO();
Map<String, Class<CustomVO>> map = new HashMap<String, Class<CustomVO>>();
map.put("customVO", CustomVO.class); //map 의 key는 의미가 없는 것으로 보인다
customVO = (CustomVO)JSONObject.toBean(JSONString, CustomVO.class, map);

net.sf.json.JSONObject 패키지 임을 확인하자