读书人

读入跟写入内存

发布时间: 2012-09-05 15:19:34 作者: rapoo

读入和写入内存

引用来的没有亲测 备用吧

FileOutputStream fos = openFileOutput("urls.txt", Context.MODE_PRIVATE);?
fos.write("Alex".getBytes());?
fos.close();?

?

FileInputStream fis = openFileInput("urls.txt");?
int c;?
while((c=fis.read())!=-1)?
? ? ? ? {?
?
? ? ? ? ? ? k += (char)c;?
? ? ? ? }?
fis.close();?
http://developer.android.com/guide/topics/data/data-storage.html#filesInternal

读书人网 >移动开发

热点推荐