Java File Append appendFile(String file, byte[]... data)

Here you can find the source of appendFile(String file, byte[]... data)

Description

append File

License

Open Source License

Declaration

public static void appendFile(String file, byte[]... data) 

Method Source Code

//package com.java2s;
/*//w w w.j a v  a  2s . c o m
 *  Copyright (C) 2010-2016 JPEXS, All rights reserved.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 3.0 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library.
 */

import java.io.FileOutputStream;
import java.io.IOException;

public class Main {
    public static void appendFile(String file, byte[]... data) {
        try (FileOutputStream fos = new FileOutputStream(file, true)) {
            for (byte[] d : data) {
                fos.write(d);
            }
        } catch (IOException ex) {
            // ignore
        }
    }
}

Related

  1. appendFile(final File srcFile, final File destFile)
  2. appendFile(final String filename, final String content)
  3. appendFile(final String name, final String s)
  4. appendFile(OutputStream output, File source)
  5. appendFile(String content, File file)
  6. appendFile(String file, String content)
  7. appendFile(String file, String text)
  8. appendFile(String fileContents, File toFile)
  9. appendFile(String fileName, byte[] data)