JSONObject의 일반적인 사용 방법

2093 단어

ResultSet에서 JsonObject 객체로 전환

    private static JSONObject rs2JsonObject(ResultSet rs, String key0) {
        ResultSetMetaData metaData;
        try {
            metaData = rs.getMetaData();
            int columnCount = metaData.getColumnCount();

            JSONObject jsonObj = new JSONObject();

            //  
            for (int i = 1; i <= columnCount; i++) {
                String columnName = metaData.getColumnLabel(i);
                String value = rs.getString(columnName);
                jsonObj.put(columnName, value);
            }
            return jsonObj;
        } catch (Exception e) {
            e.printStackTrace();
            return null;
        }
    }

JSONObject 객체를 만들고 문자열로 변환

JSONObject jsonStr=new JSONObject();
jsonStr.put("somekey", 'somevalue');
jedis.set(key, jsonStr.toString());

문자열 변환 JSONObject 객체

JSONObject newModel=new JSONObject(gsonStr);
int record_count=newModel.getInt("record_count")+1;
newModel.put("record_count", record_count);

좋은 웹페이지 즐겨찾기