关于Gson解析异常:Use JsonReader.setLenient(true) to accept malformed JSON at line 1 column 1 path $

关于Gson解析异常:Use JsonReader.setLenient(true) to accept malformed JSON at line 1 column 1 path $

搜索了很多的答案,都是说存在空格,用了很多去除空格的方法还是存在这个问题,然后我我改了下Gson,不用Gson解析,直接用JSONObject和JSONArray 解析,就可以了。

         Bundle data = msg.getData();
            String val = data.getString("value").replace(" ", "");//json字符串
            try {
                JSONObject jsonObject = new JSONObject(val);
                JSONArray Traces = (JSONArray) jsonObject.get("Traces");
                for (int i = 0; i < Traces.length(); i++) {
                    MessContent.TracesBean bean = new MessContent.TracesBean();
                    JSONObject o = (JSONObject) Traces.get(i);
                    bean.setAcceptStation((String) o.get("AcceptStation"));
                    bean.setAcceptTime((String) o.get("AcceptTime"));
                    list.add(bean);
                }
            } catch (JSONException e) {
                e.printStackTrace();
            }

你可能感兴趣的:(关于Gson解析异常:Use JsonReader.setLenient(true) to accept malformed JSON at line 1 column 1 path $)