Java FileOutputStream Create writeFile(String file, byte[]... data)

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

Description

write File

License

Open Source License

Declaration

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

Method Source Code

//package com.java2s;
/*/*w w  w . j a  va  2s  . c  om*/
 *  Copyright (C) 2010-2015 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 writeFile(String file, byte[]... data) {
        try (FileOutputStream fos = new FileOutputStream(file)) {
            for (byte[] d : data) {
                fos.write(d);
            }
        } catch (IOException ex) {
            // ignore
        }
    }
}

Related

  1. writeFile(InputStream srcStream, File destFile)
  2. writeFile(InputStream stream, File to)
  3. writeFile(List data, String filename)
  4. writeFile(String directoryPath, String filename, byte[] bytes)
  5. writeFile(String f, String s)
  6. writeFile(String file, byte[]... data)
  7. writeFile(String fileName)
  8. writeFile(String fileOutput, byte[] data)
  9. writeFile(String filePath, byte[] bytes)