Java OutputStreamWriter Write saveLongTxtList(long[] ids, String[] texts, String listFile)

Here you can find the source of saveLongTxtList(long[] ids, String[] texts, String listFile)

Description

save Long Txt List

License

Open Source License

Declaration

public static void saveLongTxtList(long[] ids, String[] texts, String listFile) throws IOException 

Method Source Code

//package com.java2s;
/*/* w w  w . ja v a  2 s  . c om*/
 * #%L
 * G
 * %%
 * Copyright (C) 2014 Giovanni Stilo
 * %%
 * G 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 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 Lesser General Public License for more details.
 * 
 * You should have received a copy of the GNU Lesser General Public
 * License along with this program.  If not, see
 * <https://www.gnu.org/licenses/lgpl-3.0.txt>.
 * #L%
 */

import java.io.BufferedWriter;

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

import java.io.OutputStreamWriter;

import java.util.zip.GZIPOutputStream;

public class Main {
    private static String SEP = "\t";

    public static void saveLongTxtList(long[] ids, String[] texts, String listFile) throws IOException {
        BufferedWriter bw = new BufferedWriter(
                new OutputStreamWriter(new GZIPOutputStream(new FileOutputStream(listFile))));
        for (int i = 0; i < texts.length; i++) {
            bw.append(ids[i] + SEP + texts[i]);
            bw.newLine();
        }
        bw.flush();
        bw.close();
    }
}

Related

  1. saveFile(String content, File f, String encoding)
  2. saveFile(String fname, String text, String encode)
  3. saveFile(String path, String msg)
  4. saveListString(List list, String filename)
  5. saveListText(String filename, List array)
  6. saveString(File f, String enc, String text)
  7. saveString(String string, File file, String charsetName)
  8. saveString2File(String s, String filename)
  9. saveStringToFile(String filename, String string)