JSONObject

            JSONObject jsonObject = null;
            try {
                jsonObject = new JSONObject(bean);
                int isOriImg = jsonObject.getInt(imgStr);
                if (isOriImg == 1) {
                    testUri = true;
                }
                String thumb_localPath = jsonObject.getString(urlStr);
                jsonObject.put(androidThumbUrl, thumb_localPath);

                jsonObject.remove(imgStr);
                jsonObject.put(imgStr, testUri);
                String jsonStr = jsonObject.toString();
                TestBeaan msgBeanImage = JSON.parseObject(jsonStr, TestBeaan.class);
            } catch (JSONException e) {
           
            }

你可能感兴趣的:(JSONObject)