其他分享
首页 > 其他分享> > android – 为什么LogCat没有显示完整的消息?

android – 为什么LogCat没有显示完整的消息?

作者:互联网

任何人都知道为什么Logcat没有显示完整的消息?
我尝试从我的网站打印xml响应,但我只能得到一些..

解决方法:

因为您的logcat已达到其最大大小,请参阅What is the size limit for Logcat and how to change its capacity?
尝试使用此代码将结果写入sdcard中的文本文件,然后使用DDMS获取它.

 public static void appendLog(String text)
{
    File logFile = new File("sdcard/log.txt");
    if (!logFile.exists())
    {
        try
        {
            logFile.createNewFile();
        } catch (IOException e)
        {
            e.printStackTrace();
        }
    }
    try
    {
        // BufferedWriter for performance, true to set append to file flag
        BufferedWriter buf = new BufferedWriter(new FileWriter(logFile, true));
        buf.append(text);
        buf.newLine();
        buf.close();
    } catch (IOException e)
    {
        e.printStackTrace();
    }
}

标签:android,eclipse,logcat,android-logcat
来源: https://codeday.me/bug/20191002/1842477.html