简体   繁体   English

将CSV文件导出到数组中

[英]Exporting a CSV file into arrays

I have a CSV file with different columns of data. 我有一个包含不同列数据的CSV文件。

Example: 例:

100, 0.1, 0.5
200, 0.1, 0.1
300, 0.2, 0.5

etc 等等

I want to store the first column into an array, the second column into its own array and so on so that I can use them for math equations. 我想将第一列存储到数组中,将第二列存储到自己的数组中,依此类推,以便可以将它们用于数学方程式。

import.java.util.Scanner; 
import java.io.File;

public class Example
{
    public static void main(String[] args) throws Exception 
    {
        Scanner s = new Scanner(new File("C://java//data.txt"));
    }
}

I'm pretty lost up until this point. 到目前为止,我还很迷茫。

You can try this:

public class ReadCSV {
    public static List<List<Double>> getDimensionList(String key) throws Exception  
    {        
        List<List<Double>> listOfDimension = new ArrayList<List<Double>>();
        List<Double> dimensionList = null;      
        File file = null;
        BufferedReader br = null;
        try {
            file = new File(key);   
            br = new BufferedReader(new FileReader(file));

            String strLine = "";
            StringTokenizer dimensionVal = null;
            int lineNumber = 0, tokenNumber = 0;
            while( (strLine = br.readLine()) != null)
            {
                    dimensionVal = new StringTokenizer(strLine, ",");
                    dimensionList = new ArrayList<Double>();
                    while(dimensionVal.hasMoreTokens())
                    {
                        tokenNumber++;
                        dimensionList.add(Double.parseDouble(dimensionVal.nextToken()));

                        if(tokenNumber == 3)
                        {
                            Comparator<Double> comparator = Collections.reverseOrder();
                            Collections.sort(dimensionList,comparator);

                        }
                    }
                    listOfDimension.add(dimensionList);
                    tokenNumber = 0;
                lineNumber++;
            }
        }catch (Exception e) {
            throw new Exception();
        }
        finally
        {
            if(br != null)
                br.close();         
        }       
        return listOfDimension;
    }

    public static void main(String[] args) throws Exception {
        System.out.println(getDimensionList("dimension_details.csv"));
    }

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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