Java Text File Write nio writeTextFile(String file, String articleContent)

Here you can find the source of writeTextFile(String file, String articleContent)

Description

write Text File

License

Open Source License

Declaration

public static void writeTextFile(String file, String articleContent) throws IOException 

Method Source Code

//package com.java2s;
/*//from ww  w.  j  av a 2s.c om
 * Wiki in a jar
 * 
 * Copyright (C) 2007 rico_g AT users DOT sourceforge DOT net
 * 
 * This program is free software; you can redistribute it and/or modify it under
 * the terms of the GNU General Public License s published by the Free Software
 * Foundation; either version 2 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.
 * 
 * You should have received a copy of the GNU General Public License along with
 * this program; if not, write to the Free Software Foundation, Inc., 51
 * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 * 
 */

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

import java.io.OutputStreamWriter;
import java.io.PrintWriter;

import java.nio.charset.Charset;

public class Main {
    public static void writeTextFile(String file, String articleContent) throws IOException {
        PrintWriter out = new PrintWriter(
                new OutputStreamWriter(new FileOutputStream(file), Charset.forName("UTF-8")));
        out.println(articleContent);
        out.close();
        if (out.checkError()) {
            throw new IOException("Error saving " + file);
        }
    }
}

Related

  1. writeStringToFile(File file, String string)
  2. writeStringToFile(File file, String text)
  3. writeStringToFile(final File file, final String content)
  4. writeStringToFile(String s, File f)
  5. writeTextFile(final File file, final String text)
  6. writeTo(File file, String content)
  7. writeToFile(File file, String content)
  8. writeToFile(File file, String str)
  9. writeToFile(final File file, final String data)