无法加载显示无法转换的字符串的数据

时间:2019-12-11 21:48:34

标签: android json

当json尝试获取数据时,会发生此错误 org.json.JSONException:类型错误为java.lang.String的值505无法转换为JSONObject    尝试{

        jsonObj = new JSONObject(wsResponseString);


        if (jsonObj.has("error")) {
            JSONObject errorJSObj;
            try {
                errorJSObj = jsonObj.getJSONObject("error");
                if (errorJSObj != null) {
                    if (errorJSObj.has("message")) {
                        userBean.setErrorMsg(errorJSObj.optString("message"));
                    }
                }
            } catch (Exception e) {
                e.printStackTrace();
            }
            userBean.setStatus("error");

0 个答案:

没有答案