Here you can find the source of saveFile(String name, byte[] data)
Parameter | Description |
---|---|
name | a parameter |
data | a parameter |
Parameter | Description |
---|---|
IOException | an exception |
public static void saveFile(String name, byte[] data) throws IOException
//package com.java2s; /*/* w w w. j av a2s. c o m*/ * OUnit - an OPAQUE compliant framework for Computer Aided Testing * * Copyright (C) 2010, 2011 Antti Andreimann * * This file is part of OUnit. * * OUnit is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * OUnit 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with OUnit. If not, see <http://www.gnu.org/licenses/>. */ import java.io.File; import java.io.FileOutputStream; import java.io.IOException; public class Main { /** * Save data to a file. Creates parent directories if needed * * @param name * @param data * @throws IOException */ public static void saveFile(String name, byte[] data) throws IOException { saveFile(new File(name), data); } /** * Save data to a file. Creates parent directories if needed * * @param dir * @param name * @param data * @throws IOException */ public static void saveFile(File dir, String name, byte[] data) throws IOException { saveFile(new File(dir, name), data); } /** * Save data to a file. Creates parent directories if needed * * @param file * @param data * @throws IOException */ public static void saveFile(File file, byte[] data) throws IOException { if (file.getParentFile() != null) file.getParentFile().mkdirs(); FileOutputStream fs = new FileOutputStream(file); fs.write(data); fs.close(); } }