Android中对象转Json串以及Log打印不全解决方案

Gson gson = new Gson();
        String msg = gson.toJson(bean);
        String tag = "LSG";
            int max_str_length = 2001 - tag.length();
            //大于4000时
            while (msg.length() > max_str_length) {
                Log.e(tag, msg.substring(0, max_str_length));
                msg = msg.substring(max_str_length);
            }
            //剩余部分
            Log.e(tag, msg);

完毕!

你可能感兴趣的:(Android小知识)