Android文件流操作读写
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android文件流操作读写相关的知识,希望对你有一定的参考价值。
1、将字符串写入文件流中。使用的是getFilesDir()。存到手机内存中。
File file = new File(getFilesDir() + "/info.txt"); try { OutputStream out = new FileOutputStream(file); out.write(text.getBytes()); out.close(); } catch (Exception e) { // TODO Auto-generated catch block e.printStackTrace(); }
以上是关于Android文件流操作读写的主要内容,如果未能解决你的问题,请参考以下文章