美文网首页
Android Log显示不全解决方案

Android Log显示不全解决方案

作者: 鲸歌铁码 | 来源:发表于2017-06-12 14:56 被阅读17次
        public static void log(String str) {
            int index = 0; // 当前位置
            int max = 3800;// 需要截取的最大长度,别用4000
            String sub;    // 进行截取操作的string
            while (index < str.length()) {
                if (str.length() < max) { // 如果长度比最大长度小
                    max = str.length();   // 最大长度设为length,全部截取完成.
                    sub = str.substring(index, max);
                } else {
                    sub = str.substring(index, max);
                }
                Logger.d(Const.TAG_LOG, sub);         // 进行输出
                index = max;
                max += 3800;
            }
        }
    

    相关文章

      网友评论

          本文标题:Android Log显示不全解决方案

          本文链接:https://www.haomeiwen.com/subject/jyplqxtx.html