码迷,mamicode.com
首页 > 其他好文 > 详细

文件存储

时间:2018-01-27 00:34:49      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:edr   not   使用   lin   null   exce   ret   nts   str   

将数据存储到文件中
private void save() {
    String data = "这是获取的数据";
    try {
        FileOutputStream out = openFileOutput("data", Context.MODE_APPEND);
        writer = new BufferedWriter(new OutputStreamWriter(out));
        writer.write(data);
    } catch (FileNotFoundException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    } finally {
        try {
            if (writer != null)
                writer.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}
  1. 通过openFileOutput()方法能够得到一个FileOutputStream对象
  2. 再借助它构建一个OutputStreamWriter对象
  3. 再使用OutputStreamWriter构建出一个BufferedWriter对象
  4. 最后通过BufferedWriter将数据写入到文件中
 
从文件中读取数据
private String load() {
    StringBuilder content = new StringBuilder();
    BufferedReader reader = null;
    try {
        FileInputStream in = openFileInput("data");
        reader = new BufferedReader(new InputStreamReader(in));
        String line = "";
        while ((line = reader.readLine())!= null)
            content.append(line);
    } catch (FileNotFoundException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    } finally {
        if (reader != null){
            try {
                reader.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }
    return content.toString();
}
  1. 通过openFileInput()方法能够得到一个FileInputStream对象
  2. 再借助它构建一个InputStreamReader对象
  3. 再使用InputStreamReader 构建出一个BufferedReader对象
  4. 通过BufferedReader进行一行行读取,并存放在StringBuilder中,最后将读取到的内容返回即可

文件存储

标签:edr   not   使用   lin   null   exce   ret   nts   str   

原文地址:https://www.cnblogs.com/wq-code/p/8361703.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!