Java Text File Write writeStringToFile(File file, String string)

Here you can find the source of writeStringToFile(File file, String string)

Description

write String To File

License

Open Source License

Declaration

public static void writeStringToFile(File file, String string) throws IOException 

Method Source Code


//package com.java2s;
/*//  w w  w .j a v a  2 s . c  o  m
 * ################################################################
 *
 * ProActive Parallel Suite(TM): The Java(TM) library for
 *    Parallel, Distributed, Multi-Core Computing for
 *    Enterprise Grids & Clouds
 *
 * Copyright (C) 1997-2011 INRIA/University of
 *                 Nice-Sophia Antipolis/ActiveEon
 * Contact: proactive@ow2.org or contact@activeeon.com
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Affero General Public License
 * as published by the Free Software Foundation; version 3 of
 * the License.
 *
 * 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
 * Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
 * USA
 *
 * If needed, contact us to obtain a release under GPL Version 2 or 3
 * or a different license than the AGPL.
 *
 *  Initial developer(s):               The ActiveEon Team
 *                        http://www.activeeon.com/
 *  Contributor(s):
 *
 * ################################################################
 * $ACTIVEEON_INITIAL_DEV$
 */

import java.io.BufferedOutputStream;

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

import java.io.IOException;

import java.io.OutputStream;

public class Main {
    public static void writeStringToFile(File file, String string) throws IOException {
        OutputStream out = new BufferedOutputStream(new FileOutputStream(file));
        try {
            out.write(string.getBytes());
        } finally {
            out.close();
        }
    }
}

Related

  1. writeStringToFile(File file, String data, String encoding)
  2. writeStringToFile(File file, String data, String encoding)
  3. writeStringToFile(File file, String data, String encoding)
  4. writeStringToFile(File file, String s)
  5. writeStringToFile(File file, String str, boolean compress)
  6. writeStringToFile(File file, String string, String encoding)
  7. writeStringToFile(File file, String stringToWrite)
  8. writeStringToFile(File file, String text)
  9. writeStringToFile(File file, String text)