Запись данных Android logcat в файл
Я хочу сбросить Android logcat в файл, когда пользователь хочет собирать журналы. С помощью инструментов adb мы можем перенаправлять журналы в файл с помощью adb logcat -f filename
, но как я могу сделать это программно?
4 ответа:
здесь пример читать журналы.
вы можете изменить это, чтобы записать в файл, а не в
TextView
.нужно разрешение в
AndroidManifest
:<uses-permission android:name="android.permission.READ_LOGS" />
код:
public class LogTest extends Activity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); try { Process process = Runtime.getRuntime().exec("logcat -d"); BufferedReader bufferedReader = new BufferedReader( new InputStreamReader(process.getInputStream())); StringBuilder log = new StringBuilder(); String line; while ((line = bufferedReader.readLine()) != null) { log.append(line); } TextView tv = (TextView) findViewById(R.id.textView1); tv.setText(log.toString()); } catch (IOException e) { } } }
Logcat может записывать непосредственно в файл:
public static void saveLogcatToFile(Context context) { String fileName = "logcat_"+System.currentTimeMillis()+".txt"; File outputFile = new File(context.getExternalCacheDir(),fileName); @SuppressWarnings("unused") Process process = Runtime.getRuntime().exec("logcat -f "+outputFile.getAbsolutePath()); }
дополнительная информация о logcat: см. http://developer.android.com/tools/debugging/debugging-log.html
или вы можете попробовать этот Вариан
try { final File path = new File( Environment.getExternalStorageDirectory(), "DBO_logs5"); if (!path.exists()) { path.mkdir(); } Runtime.getRuntime().exec( "logcat -d -f " + path + File.separator + "dbo_logcat" + ".txt"); } catch (IOException e) { e.printStackTrace(); }
public static void writeLogToFile(Context context) { String fileName = "logcat.txt"; File file= new File(context.getExternalCacheDir(),fileName); if(!file.exists()) file.createNewFile(); String command = "logcat -f "+file.getAbsolutePath(); Runtime.getRuntime().exec(command); }
выше метод запишет все журналы в файл. Также, Пожалуйста, добавьте ниже разрешения в файл манифеста
<uses-permission android:name="android.permission.READ_LOGS" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />