WEB开发网
开发学院手机开发Android 开发 Android读写文件 阅读

Android读写文件

 2012-07-07 14:27:30 来源:WEB开发网   
核心提示: fout.write(bytes); fout.close(); } catch(Exception e){ e.printStackTrace(); } }//---//读文件在./data/data/com.tt/files/下面 pu
       fout.write(bytes); 
        fout.close(); 
       } 
      catch(Exception e){ 
       e.printStackTrace(); 
      } 
   }
//-------------------------------------------------------
//读文件在./data/data/com.tt/files/下面
   public String readFileData(String fileName){ 
       String res=""; 
       try
        FileInputStream fin = openFileInput(fileName); 
        int length = fin.available(); 
        byte [] buffer = new byte[length]; 
        fin.read(buffer);     
        res = EncodingUtils.getString(buffer, "UTF-8"); 
        fin.close();     
       } 
       catch(Exception e){ 
        e.printStackTrace(); 

上一页  1 2 3 4 5 6  下一页

Tags:Android 读写 文件

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接