首页 > 其他 > 详细

文件的简单读写操作

时间:2016-03-19 15:59:02      阅读:176      评论:0      收藏:0      [点我收藏+]

 

 

    用openFileOutput()方法保存的文件,是直接保存在手机空间中的,一般适合保存较小的文件;

 

写入:

 1     public boolean writeFile(String fileName, String content) {
 2         try {
 3             FileOutputStream stream  = openFileOutput(fileName, MODE_PRIVATE);
 4             byte[]           buffers = content.getBytes();
 5 
 6             stream.write(buffers);
 7             stream.flush();//---清空缓存
 8             stream.close();
 9             return true;
10         }
11         catch (Exception ex) {
12             ex.printStackTrace();
13             return false;
14         }
15     }

 

 

读出:

 1     public String readFile(String fileName) {
 2         String content = "";
 3         try {
 4             FileInputStream stream  = openFileInput(fileName);
 5             int             length  = stream.available();
 6             byte[]          buffers = new byte[length];
 7 
 8             stream.read(buffers);
 9             content = new String(buffers);
10         }
11         catch(Exception ex) {
12             ex.printStackTrace();
13         }
14         return content;
15     }

 

文件的简单读写操作

原文:http://www.cnblogs.com/laishenghao/p/5295110.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!