当我的应用启动时,我已将logcat重定向到我的代码中的文件。 但是当我的应用程序重新启动时,重定向代码再次运行,结果是日志中的每一行都写了两次。
如何执行命令并确保子进程在父进程死亡时死亡?
String.format("logcat -f %s -r %d", filename.getAbsolutePath(), LOG_FILE_SIZE_KB);
Runtime.getRuntime().exec(cmd);
如何确保我的应用程序的logcat只被重定向一次? (如果其他应用程序调用logcat并将其重定向到自己的文件,会发生什么事情,那么检查是否仍然有效?)
谢谢!
答案 0 :(得分:1)
如果您仅使用LogCat进行调试,则可能需要阅读this。
激活LogCat之后,您可以在Eclipse中打开LogCat-View,然后会显示所有LogCat-Output,因此您无需首先将其写入文件。
答案 1 :(得分:1)
两个选项:
a)创建一个静态全局变量,其中包含Logcat已被重定向的信息天气
b)在sdcard或app目录(xml或属性文件)中创建一个包含信息天气的文件LogCat已被重定向。
答案 2 :(得分:-1)
/** Redirects the log output to the SDCard.
*
* make sure your app has the WRITE_EXTERNAL_STORAGE and READ_LOGS permissions -
* or it won't allow it to read logs and write them to the sdcard.
* If the application doesn't have the permissions, there will be no exception
* and the program will continue regularly.
*/
public static void redirectOutputToFile()
{
s_enableLogs = true;
if (s_logcatProcess != null)
{
Logger log = new Logger("Logger");
log.info("redirectOutputToFile() called more then once, perhaps from service onCreate and onStart.");
return;
}
try
{
String path = Environment.getExternalStorageDirectory() + LOG_FILE_NAME;
File filename = new File(path);
filename.createNewFile();
//http://www.linuxtopia.org/online_books/android/devguide/guide/developing/tools/android_adb_logcatoptions.html
String cmd = String.format("logcat -v time -f %s -r %d -n %d", filename.getAbsolutePath(), LOG_FILE_SIZE_KB, LOG_FILE_ROTATIONS);
s_logcatProcess = Runtime.getRuntime().exec(cmd);
}
catch (IOException e)
{
Logger log = new Logger("Logger");
log.exception(e);
}
}
/** Kills the logcat process that was created in the redirectOutputToFile() method. */
public static void killLogcatProcess()
{
// first update the log mode state
s_enableLogs = false;
if (s_logcatProcess != null)
{
s_logcatProcess.destroy();
s_logcatProcess = null;
}
}