码迷,mamicode.com
首页 > 移动开发 > 详细

安卓读写文件和路劲注意事项

时间:2015-07-12 07:01:56      阅读:244      评论:0      收藏:0      [点我收藏+]

标签:

写文件:

private void writeToLocal(String filesString,String content,int mode) {
try {
FileOutputStream fisStream=openFileOutput(filesString,mode);
fisStream.write(content.getBytes());
fisStream.flush();
fisStream.close();
} catch (Exception e) {
// TODO: handle exception
}
}

读文件:

private boolean readFile(String string) {
try {
BufferedReader reader=new BufferedReader(new InputStreamReader(new FileInputStream(basicPaString+string)));
String valueString= reader.readLine();
return true;
} catch (Exception e) {
return false;
}
}

路径注意问题:

Environment.getExternalStorageDirectory()为sd卡路劲

如果读写文件时直接写文件名,则相当于this.getFilesDir()+"/"+文件名。路径为/data/data/包名/files/文件名

为了保护用户隐私,在读取和写入SD卡信息的时候,运行在4.0系统以上的系统需要增加SD卡的读取和写入权限。

文件的读写权限请看下图

技术分享

 

安卓读写文件和路劲注意事项

标签:

原文地址:http://www.cnblogs.com/zhoumingxiu/p/4639921.html

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