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

写文件

时间:2015-03-07 11:25:00      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:

  

public Boolean SaveDataToRom(String name, String pwd){
        Boolean flag = false;
        try{
            String content = name+":"+pwd;
            FileOutputStream fos = context.openFileOutput("data.txt", Context.MODE_WORLD_WRITEABLE|Context.MODE_WORLD_READABLE);
            fos.write(content.getBytes());
            fos.flush();
            fos.close();
            flag = true;
        } catch (Exception e) {
            // TODO: handle exception
            e.printStackTrace();
        }finally{
            return flag;
        }
        
    }

 

写文件

标签:

原文地址:http://www.cnblogs.com/luoyaqi/p/4319855.html

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