Android 日志输出到本地txt

来源:互联网 发布:淘宝服装代理货源网 编辑:程序博客网 时间:2024/04/28 06:41
  1. String str = "hello world";  
  2. try {  
  3.     FileWriter fw = new FileWriter(PATH + "/aa.txt");  
  4.     fw.flush();  
  5.     fw.write(str);  
  6.     fw.close();  
  7. } catch (Exception e) {  
  8.     e.printStackTrace();  
  9. }  
  10. String str = "hello world";  
  11. try {  
  12.     FileWriter fw = new FileWriter(PATH + "/aa.txt");  
  13.     fw.flush();  
  14.     fw.write(str);  
  15.     fw.close();  
  16. } catch (Exception e) {  
  17.     e.printStackTrace();  
  18. }   
0 0