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

读写存储内外部文本数据

时间:2015-07-31 19:54:18      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:

 

读写内部存储的文件数据

FileOutputStream fos = OpenFileOutput(filename,Context.Mode_private);

OutputStreamWriter  osw = new OutputStreamWriter();

osw.write();

osw.flush();

fos.flush();

osw.close();

fos.close();

FileInputStream......

 

 

读写外部存储文件数据  SD卡

menifest文件里write....external.....

获取SD卡路径:File sdcard = Enviroment.getExernalStorageDirectory();

File mfile = new File(sdcard,"This is my file.txt");

if(sdcard.exists()){myfile.createNewFile();FileOutputStream fos = new FileOutputStream(myfile);}//写

File mfile = new file();

if(sdcard.exists()){}//读

 

读写存储内外部文本数据

标签:

原文地址:http://www.cnblogs.com/hzwcoming/p/4692833.html

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