JSON String to VO object
import net.sf.json.JSONObject customVO customVO = new CustomVO(); Map map = new HashMap(); map.put("customVO", CustomVO.class); //map 의 key는 의미가 없는 것으로 보인다 customVO = (CustomVO)JSONObject.toBean(JSONString, CustomVO.class, map); net.sf.json.JSONObject 패키지 임을 확인하자