Java FileWriter Write saveListStringToFile(String filePath, List listString)

Here you can find the source of saveListStringToFile(String filePath, List listString)

Description

save List String To File

License

Open Source License

Declaration

public static boolean saveListStringToFile(String filePath, List<String> listString) 

Method Source Code

//package com.java2s;
/*//from   w  ww  . j a  va2  s .  co m
 * Copyright (C) 2003-2013 eXo Platform SAS.
 *
 * This is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation; either version 3 of
 * the License, or (at your option) any later version.
 *
 * This software 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this software; if not, write to the Free
 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
 */

import java.io.FileWriter;
import java.io.IOException;

import java.util.List;

public class Main {
    public static boolean saveListStringToFile(String filePath, List<String> listString) {
        System.out.println("Save translation to file " + filePath);
        try {
            StringBuffer content = new StringBuffer();

            for (String str : listString) {
                content.append(str + System.getProperty("line.separator"));
            }
            FileWriter writer = new FileWriter(filePath);
            writer.write(content.toString());
            writer.close();
        } catch (IOException ioe) {
            ioe.printStackTrace();
            return false;
        }
        return true;
    }
}

Related

  1. saveIndex(File root_, Hashtable index)
  2. saveInputStreamInFile(InputStream stream, FileWriter f)
  3. saveIntegerNodes2File(Integer[] nodes, String fileName)
  4. saveIntNodes2File(int[] nodes, String fileName)
  5. saveList(String listName, Set list)
  6. saveListToFile(ArrayList list, String filePath)
  7. saveMap(Map map, String filePath)
  8. saveMap(String filename, Map map)
  9. saveMappingFile(File mappingFile, Map messageMap)