Here you can find the source of saveLongTxtList(long[] ids, String[] texts, String listFile)
public static void saveLongTxtList(long[] ids, String[] texts, String listFile) throws IOException
//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(); } }