首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Android >

Android 日记输出到本地txt

2012-08-26 
Android 日志输出到本地txt有时候Logcat日志过长,为了方便查看,我们可以把它存储到text文档。 String str

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();} 


 

热点排行