Java Text File Write writeStringTo(File outFile, String data)

Here you can find the source of writeStringTo(File outFile, String data)

Description

write String To

License

Open Source License

Declaration

public static void writeStringTo(File outFile, String data)
            throws IOException 

Method Source Code

//package com.java2s;
/*// w  ww. jav  a2  s . co m
 * Copyright (C) 2015 Brockmann Consult GmbH
 * This code was developed for the EC project "Fidelity and Uncertainty in
 * Climate Data Records from Earth Observations (FIDUCEO)".
 * Grant Agreement: 638822
 *
 * This program 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.
 * This program 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.
 *
 * A copy of the GNU General Public License should have been supplied along
 * with this program; if not, see http://www.gnu.org/licenses/
 *
 */

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

public class Main {
    public static void writeStringTo(File outFile, String data)
            throws IOException {
        FileOutputStream outputStream = null;
        try {
            outputStream = new FileOutputStream(outFile);
            outputStream.write(data.getBytes());
            outputStream.flush();
        } finally {
            if (outputStream != null) {
                outputStream.close();
            }
        }
    }
}

Related

  1. writeStringFile(String FileName, String text)
  2. writeStringInto(String s, File outputFile)
  3. writeStringInto(String s, File outputFile)
  4. writeStringListToFile(File file, ArrayList lines)
  5. writeStringListToFile(File file, List lines)
  6. writeStringTo(String _value, File _target)
  7. writeStringToFile(@Nonnull String string, @Nonnull final File file)
  8. writeStringToFile(CharSequence contents, String filename)
  9. writeStringToFile(File f, String content, boolean append)