Android Text File Write writeLargerTextFile(File file, List aLines)

Here you can find the source of writeLargerTextFile(File file, List aLines)

Description

write Larger Text File

License

MIT License

Declaration

public static void writeLargerTextFile(File file, List<String> aLines)
            throws IOException 

Method Source Code

//package com.java2s;
/*//from w ww  .  j  a va2s.co  m
 * This file is part of UltimateCore, licensed under the MIT License (MIT).
 *
 * Copyright (c) Bammerbom
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */

import java.io.*;

import java.nio.charset.StandardCharsets;
import java.nio.file.Files;

import java.nio.file.Paths;

import java.util.List;

public class Main {
    public static void writeLargerTextFile(File file, List<String> aLines)
            throws IOException {
        try (BufferedWriter writer = Files.newBufferedWriter(
                Paths.get(file.getPath()), StandardCharsets.UTF_8)) {
            for (String line : aLines) {
                writer.write(line);
                writer.newLine();
            }
        }
    }
}

Related

  1. writeFileAsString(String filename, String text)
  2. writeFileAsString(String filename, String text, String encoding)
  3. writeFileAsStringWorldWritable(File file, String text)
  4. writeFileAtomically(File file, String content, String encoding)
  5. writeFileWithBom(File file, String content, String encoding)
  6. writeLineTextFile(File file, String data)
  7. writeLineTextFile(File file, String[] dataArray)
  8. writeSet2File(Set set, String filePath)
  9. writeString(String string, File file, boolean append)