当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");