Here you can find the source of writeTextFile(String file, String articleContent)
public static void writeTextFile(String file, String articleContent) throws IOException
//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); } } }