关于Android studio Logcat显示不全,不显示自己需要打印的LOG数据

if (arg0.result.length() > 4000) {
    Log.e("======", "sb.length = " + arg0.result.length());
    int chunkCount = arg0.result.length() / 4000;     // integer division
    for (int i = 0; i <= chunkCount; i++) {
        int max = 4000 * (i + 1);
        if (max >= arg0.result.length()) {
            Log.e("======", "chunk " + i + " of " + chunkCount + ":"+ arg0.result.substring(4000 * i));
        } else {
            Log.e("======", "chunk " + i + " of " + chunkCount + ":" + arg0.result.substring(4000 * i, max));
        }
    }
} else {
    Log.e("======", arg0.result.toString());

}


 

if (responseInfo.result.length() > 4000) {
    Log.e("======", "sb.length = " + responseInfo.result.length());
    int chunkCount = responseInfo.result.length() / 4000;     // integer division
    for (int i = 0; i <= chunkCount; i++) {
        int max = 4000 * (i + 1);
        if (max >= responseInfo.result.length()) {
            Log.e("======", "chunk " + i + " of " + chunkCount + ":"+ responseInfo.result.substring(4000 * i));
        } else {
            Log.e("======", "chunk " + i + " of " + chunkCount + ":" + responseInfo.result.substring(4000 * i, max));
        }
    }
} else {
    Log.e("======", responseInfo.result.toString());

}

转:https://sanwen8.cn/p/21eJMO1.html

你可能感兴趣的:(Android)