安卓log4k问题解决
Posted 世界很大,风住过这里
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了安卓log4k问题解决相关的知识,希望对你有一定的参考价值。
1.直接上代码
//log4k问题 public static void log(String tag, 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); } Log.i(tag, sub); // 进行输出 index = max; max += 3800; } }
以上是关于安卓log4k问题解决的主要内容,如果未能解决你的问题,请参考以下文章