码迷,mamicode.com
首页 > 移动开发 > 详细

安卓log4k问题解决

时间:2016-06-08 12:12:03      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:

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问题解决

标签:

原文地址:http://www.cnblogs.com/andlp/p/5569567.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!