Converting CSV File Into 2D Array

匿名 (未验证) 提交于 2019-12-03 02:31:01

问题:

I have an example of my idea in a 1d array. It will only output the columns. My idea is to use a 2d array to select the row and column. Here my code:

String fName = "c:\\csv\\myfile.csv"; String thisLine;  int count=0;  FileInputStream fis = new FileInputStream(fName); DataInputStream myInput = new DataInputStream(fis); int i=0;   while ((thisLine = myInput.readLine()) != null) {      String strar[] = thisLine.split(";");      out.println(strar[1]); // Here column 2 } 

myfile.csv

Id;name E1;Tim A1;Tom 

Output:

name Tim Tom

回答1:

I would just add the split result (String[]) to a List then if you really want it as a 2d array then convert it after the fact.

List<String[]> lines = new ArrayList<String[]>(); while ((thisLine = myInput.readLine()) != null) {      lines.add(thisLine.split(";")); }  // convert our list to a String array. String[][] array = new String[lines.size()][0]; lines.toArray(array); 


回答2:

First thing we don't know how many lines are there in the csv file. So it's impossible to determine the length of the 2d array. We have to increment the size of the array according to this case. But, normally it's impossible to re-size the array with java. So we create new array and copy contents of source array when we need to re-size the array.

Solution for you:

int i = 0;//line count of csv String[][] data = new String[0][];//csv data line count=0 initially while ((thisLine = myInput.readLine()) != null) {     ++i;//increment the line count when new line found      String[][] newdata = new String[i][2];//create new array for data      String strar[] = thisLine.split(";");//get contents of line as an array     newdata[i - 1] = strar;//add new line to the array      System.arraycopy(data, 0, newdata, 0, i - 1);//copy previously read values to new array     data = newdata;//set new array as csv data } 

Create test to view csv data:

for (String[] strings : data) {     for (String string : strings) {         System.out.print("\t" + string);     }     System.out.println(); } 

Output:

Id  name E1  Tim A1  Tom 


回答3:

I would use a dynamic structure to read all lines. Also you should use a try-resource block to close the streams automatically.

public static String[][] readCSV(String path) throws FileNotFoundException, IOException {     try (FileReader fr = new FileReader(path);             BufferedReader br = new BufferedReader(fr)) {         Collection<String[]> lines = new ArrayList<>();         for (String line = br.readLine(); line != null; line = br.readLine()) {             lines.add(line.split(";"));         }         return lines.toArray(new String[lines.size()][]);     } } 


回答4:

It's better to use an ArrayList of 1D String arrays, instead of a 2D String array.

String fName = "c:\\csv\\myfile.csv"; String thisLine; FileInputStream fis = new FileInputStream(fName); DataInputStream myInput = new DataInputStream(fis); ArrayList<String[]> strar = new ArrayList<String[]>();  while ((thisLine = myInput.readLine()) != null) {     strar.add(thisLine.split(";")); } 

Note: Also you need to handle the IOException here.



回答5:

This is my implemented code:

String fileName = "myfile.csv"; List<List<String>> list = new ArrayList<List<String>>(); BufferedReader br = new BufferedReader(new FileReader(fileName)); String line = br.readLine(); String[] headers = line.split(";"); for(String header: headers) {     List<String> subList = new ArrayList<String>();     subList.add(header);     list.add(subList); } while((line = br.readLine()) != null) {     String[] elems = line.split(";");     for(int i = 0; i < elems.length; i++) {         list.get(i).add(elems[i]);     } } br.close(); int rows = list.size(); int cols = list.get(0).size(); String[][] array2D = new String[rows][cols]; for(int row = 0; row < rows; row++) {     for(int col = 0; col < cols; col++) {         array2D[row][col] = list.get(row).get(col);     } } 

The array2D is your wants.



标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!