Commit 4434c354 authored by mengcuiguang's avatar mengcuiguang

代码优化

parent 797a007a
......@@ -185,7 +185,8 @@ public class OkHttpInterceptor implements Interceptor {
rspString = AESUtils.detrypt(data.toString(), aesKey);
JSONObject jsonArray = new JSONObject(rspString);
json.put("data", jsonArray);
rspString = json.toString().replace("\\", "");
rspString = json.toString();
// rspString = json.toString().replace("\\", "");
}
} catch (Exception e) {
LogUtil.d("OkHttpInterceptor", "json解密失败。url:" + response.request().url().toString() + "\n\n 响应报文:" + buffer.clone().readString(charset));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment