我想将 logcat 输出到logs.log
文件。它工作正常,我可以使用 Android 中的应用程序 FileManager 打开它。但是如果我将手机连接到计算机,我将无法访问它。如何使文件在计算机中可见?
try {
File filename = new File(Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS)+"/logs.log");
filename.createNewFile();
String cmd = "logcat -d -f "+filename.getAbsolutePath();
Runtime.getRuntime().exec(cmd);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}