简体   繁体   中英

How to input the data from multiple csv files using java

I have some CSV file with the same column header. I want to make them to one file.So I found something similar to me. Link is Merge CSV files into a single file with no repeated headers . but I want to return the data as a String, but this code has no return. I try to modify that. but I failed. I want to put the data from several csv into one variable.

String[] headers = null;
String firstFile = "/path/to/firstFile.dat";
Scanner scanner = new Scanner(new File(firstFile));

if (scanner.hasNextLine())
    headers[] = scanner.nextLine().split(",");

scanner.close();

Iterator<File> iterFiles = listOfFilesToBeMerged.iterator();
BufferedWriter writer = new BufferedWriter(new FileWriter(firstFile, true));

while (iterFiles.hasNext()) {
  File nextFile = iterFiles.next();
  BufferedReader reader = new BufferedReader(new FileReader(nextFile));

  String line = null;
  String[] firstLine = null;
  if ((line = reader.readLine()) != null)
    firstLine = line.split(",");

  if (!Arrays.equals (headers, firstLine))
    throw new FileMergeException("Header mis-match between CSV files: '" +
              firstFile + "' and '" + nextFile.getAbsolutePath());

  while ((line = reader.readLine()) != null) {
    writer.write(line);
    writer.newLine();
  }

  reader.close();
}
writer.close();

Here is what you might be looking for. I have read two csv files and written into one. Hope this is use full...

import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.util.ArrayList;

public class CombineTwoFile
{
       public static void main(String[] args) throws IOException
       {      
       ArrayList<String> list = new ArrayList<String>();
       try
       {
       BufferedReader br = new BufferedReader(new FileReader( "d:\\1\\1.csv"));
         BufferedReader r = new BufferedReader(new FileReader( "d:\\1\\2.csv"));
            String s1 =null;
            String s2 = null;

                         while ((s1 = br.readLine()) != null)
                         {                         
                                        list.add(s1);        
                         }
                         while((s2 = r.readLine()) != null)
                         {    
                                        list.add(s2);    
                         } 
       }
        catch (IOException e)
          {
            e.printStackTrace();
          }

           BufferedWriter writer=null;
           writer = new BufferedWriter(new FileWriter("d:\\1\\good.csv"));
            String listWord;              
                   for (int i = 0; i< list.size(); i++)
                  {
                        listWord = list.get(i);
                       writer.write(listWord);
                       writer.write("\n");
                  }
                           System.out.println("DONE Enjoy!!");
                           writer.close();    
        }
    }

Or if you looking for a function which returns String combining two csv

public static String combineCSV() {
        ArrayList<String> list = new ArrayList<String>();
        try {
            BufferedReader br = new BufferedReader(new FileReader(
                    "d:\\1\\1.csv"));
            BufferedReader r = new BufferedReader(
                    new FileReader("d:\\1\\2.csv"));
            String s1 = null;
            String s2 = null;

            while ((s1 = br.readLine()) != null) {
                list.add(s1);
            }
            while ((s2 = r.readLine()) != null) {
                list.add(s2);
            }
        } catch (IOException e) {
            e.printStackTrace();
        }

        String listWord;
        StringBuffer objBuffer = new StringBuffer();
        for (int i = 0; i < list.size(); i++) {
            listWord = list.get(i);

            objBuffer.append(listWord);
            objBuffer.append("\n");

        }
        System.out.println("DONE Enjoy!!");
        System.out.println(objBuffer);
        return objBuffer.toString();
    }

Thank you!!!! Enjoy Coding...

另一种选择是使用Open CSV库

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM