File anrFile = null;
        String status = Environment.getExternalStorageState();
        if (status.equals(Environment.MEDIA_MOUNTED)) {
            File sd = Environment.getExternalStorageDirectory();
            String path = sd.getPath()+"/anrlog/" + sd_appName;
            FileReader input = null;
            FileWriter output = null;
            try {
                    File file = new File("/data/anr/traces.txt");
                    if(file.exists()){
                            input = new FileReader(file);  
                            output = new FileWriter(path + "/trace.txt");  
                            int read = input.read();          
                            while ( read != -1 ) {  
                                    output.write(read);   
                                    read = input.read();  
                            }             
                    }
            } catch (Exception e) {  
                    
            } finally {
                    try{if(null != input) input.close(); }catch (Exception e) {}
                    try{if(null != output) output.close(); }catch (Exception e) {}
            }
            
            anrFile = new File(path + "/trace.txt");
            if(!anrFile.exists()){
                    anrFile = null;
            }
        }

 

相关文章:

  • 2021-05-15
  • 2021-11-27
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-22
猜你喜欢
  • 2021-04-19
  • 2021-04-25
  • 2022-12-23
  • 2021-08-26
  • 2021-06-26
  • 2021-10-23
相关资源
相似解决方案