Android Text File Append appendString(String filename, String content)

Here you can find the source of appendString(String filename, String content)

Description

append String

License

Apache License

Declaration

public static void appendString(String filename, String content) 

Method Source Code

//package com.java2s;
/*//from  ww w.  ja v  a2 s. co m
 Copyright (c) 2012 IBM Corp.

 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
 You may obtain a copy of the License at

 http://www.apache.org/licenses/LICENSE-2.0

 Unless required by applicable law or agreed to in writing, software
 distributed under the License is distributed on an "AS IS" BASIS,
 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 See the License for the specific language governing permissions and
 limitations under the License.
 */

import java.io.*;

public class Main {
    public static void appendString(String filename, String content) {
        try {
            FileWriter f = new FileWriter(filename, true);
            f.write(content);
            f.close();
        } catch (Exception e) {
            throw new Error(e);
        }
    }
}

Related

  1. appendFile(File file, String content)
  2. appendLineToFile(String textToWrite, String fileName)
  3. appendToFile(String sb, String directory, String fileName)