Android Text File Append appendFile(File file, String content)

Here you can find the source of appendFile(File file, String content)

Description

Reads some bytes from the file.

License

Apache License

Parameter

Parameter Description
file a parameter
size a parameter

Exception

Parameter Description
IOException an exception

Declaration

public static void appendFile(File file, String content) 

Method Source Code

/**/* w  w  w  .  ja v a 2  s.  c  o  m*/
 *  Copyright 2009 Welocalize, Inc. 
 *  
 *  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.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileFilter;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.FileWriter;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.OutputStreamWriter;
import java.io.Writer;
import java.nio.ByteBuffer;
import java.nio.charset.Charset;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import org.apache.log4j.Logger;

public class Main{
    static private final Logger logger = Logger.getLogger(FileUtil.class);
    /**
     * Reads some bytes from the file.
     * 
     * @param file
     * @param size
     * @return
     * @throws IOException
     */
    public static void appendFile(File file, String content) {
        if (!file.exists()) {
            file.getParentFile().mkdirs();
        }

        FileWriter out = null;

        try {
            out = new FileWriter(file, true);
            out.write(content);
        } catch (IOException e) {
            logger.error(e.getMessage(), e);
        } finally {
            if (out != null) {
                try {
                    out.flush();
                    out.close();
                } catch (IOException e) {
                    logger.error(e.getMessage(), e);
                }
            }
        }
    }
}

Related

  1. appendLineToFile(String textToWrite, String fileName)
  2. appendString(String filename, String content)
  3. appendToFile(String sb, String directory, String fileName)