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();
                    }
View Code

 

以上是关于Android文件流操作读写的主要内容,如果未能解决你的问题,请参考以下文章

Java 字符流读写文件

文件的读写安卓8

Android文件的读写

android 如何读写文件?

IO流文件的读写操作

16 IO操作文件读写