当前位置: 代码迷 >> Android >> Android 日记输出到本地txt
  详细解决方案

Android 日记输出到本地txt

热度:55   发布时间:2016-05-01 17:44:03.0
Android 日志输出到本地txt

有时候Logcat日志过长,为了方便查看,我们可以把它存储到text文档。

 

String str = "hello world";try {	FileWriter fw = new FileWriter(PATH + "/aa.txt");	fw.flush();	fw.write(str);	fw.close();} catch (Exception e) {	e.printStackTrace();}String str = "hello world";try {	FileWriter fw = new FileWriter(PATH + "/aa.txt");	fw.flush();	fw.write(str);	fw.close();} catch (Exception e) {	e.printStackTrace();} 


 

  相关解决方案