任何人都知道为什么logcat中不显示完整的邮件? 我尝试打印从我的网站的XML响应,但我只能得到一些吧..
Answer 1:
因为你的logcat已达到其最大大小,看什么是logcat的大小限制,以及如何改变它的容量?
尝试使用此代码来写你的结果到SD卡中的一个文本文件,然后使用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();
}
}
Answer 2:
把你的光标上的错误,你会看到完整的日志猫的信息。
文章来源: Why does LogCat not show the full message?