• Android 追加写入文件的三种方法


    一、使用FileOutputStream

    使用FileOutputStream,在构造FileOutputStream时,把第二个参数设为true

        public static void method1(String file, String conent) {  
            BufferedWriter out = null;  
            try {  
                out = new BufferedWriter(new OutputStreamWriter(  
                        new FileOutputStream(file, true)));  
                out.write(conent);  
            } catch (Exception e) {  
                e.printStackTrace();  
            } finally {  
                try {  
                    out.close();  
                } catch (IOException e) {  
                    e.printStackTrace();  
                }  
            }  
        }  

    二、使用FileWriter

    打开一个写文件器,构造函数中的第二个参数true表示以追加形式写文件

        public static void method2(String fileName, String content) {  
            try {  
                // 打开一个写文件器,构造函数中的第二个参数true表示以追加形式写文件  
                FileWriter writer = new FileWriter(fileName, true);  
                writer.write(content);  
                writer.close();  
            } catch (IOException e) {  
                e.printStackTrace();  
            }  
        }  

    三、使用RandomAccessFile

    打开一个随机访问文件流,按读写方式写入

        public static void method3(String fileName, String content) {  
            try {  
                // 打开一个随机访问文件流,按读写方式  
                RandomAccessFile randomFile = new RandomAccessFile(fileName, "rw");  
                // 文件长度,字节数  
                long fileLength = randomFile.length();  
                // 将写文件指针移到文件尾。  
                randomFile.seek(fileLength);  
                randomFile.writeBytes(content);  
                randomFile.close();  
            } catch (IOException e) {  
                e.printStackTrace();  
            }  
        }  
  • 相关阅读:
    Grafana、Prometheus、mtail-日志监控
    Grafana、Prometheus-监控平台
    vijos1062迎春舞会之交谊舞
    【模板】字符串哈希
    非递归方式打印4的全排列
    蚂蚁金服后端开发面试
    Intern Day163
    Intern Day156
    Intern Day153
    Intern Day153
  • 原文地址:https://www.cnblogs.com/renhui/p/8656586.html
Copyright © 2020-2023  润新知