0

谁能告诉我如何使用打开的 csv 解析文件?我尝试了很多天,但我没有得到结果。这是我的代码

package csv;

import java.io.IOException;

import au.com.bytecode.opencsv.CSVReader;
import java.io.FileReader;
import csv.*;
import java.io.*;
public class CSVParser {

public static void main(String[] args) throws IOException,java.io.FileNotFoundException   {

 try{ 
        CSVReader reader = new CSVReader(new FileReader("D:\\error.txt"));

     String sLine = null;

     String[] nextLine;

     int count=0,flag=0;
     nextLine=reader.readNext();
     while( (nextLine!=null)  )  
        {
            count++;
            System.out.println("count::: "+count + "and length is" +nextLine.length);
            System.out.println("String:::"+nextLine[0]);
            if ( (nextLine.length!= 9)   ) {

               flag=1;
                break;
            }

            nextLine=reader.readNext();
        }
    System.out.println("No of lines:::"+count);


    if(flag==1)
        {
                reader.close();
                System.out.println("errror");
                movefiles m= new movefiles();
                m.move("D:\\error.txt");
        }

    else{

                System.out.println("No error");

            try{
           while((nextLine=reader.readNext())!=null)      {
          String   code                = nextLine[0].toString();
          String   commodity           = nextLine[1].toString();
          float          contract_price      = Float.parseFloat(nextLine[2].toString());
          float          open_contract_vol   = Float.parseFloat(nextLine[3].toString());
          float          open_contract_price = Float.parseFloat(nextLine[4].toString());
          float          unpriced_vol        = Float.parseFloat(nextLine[5].toString());
          float          holdover_prod       = Float.parseFloat(nextLine[6].toString());
          String          date                = nextLine[7].toString();
          String          time                = nextLine[8].toString();
          System.out.println("Data From File is :::" + code +commodity +contract_price +open_contract_vol +open_contract_price +unpriced_vol +holdover_prod +date +time);
            }}catch(Exception e)

        {
            e.printStackTrace();
            System.err.println("here is error:::"+e.getMessage());
        }
    }
    reader.close();

    } catch(Exception e) {
        e.printStackTrace();
        System.err.println("error:::" +e.getMessage());
    }
  }
}

但问题是,当我运行此代码时,即使我的文件包含一行,它也会显示两行,而第二行不包含任何内容。我认为它可能包含空格。谁能告诉我为什么即使我的文件包含一行它也向我显示 2 以及我该如何克服它。如何一次读取一行。请帮助我,我是 csv 新手,我正在使用 opencsv jar 库

4

1 回答 1

2

没有看到你的输入文件很难说。但在任何情况下,您的代码的第一部分都可以正常工作,遍历输入文件中的行。但是你的代码的第二部分是有问题的:

if(flag==1) {
    reader.close();
    System.out.println("errror");
    movefiles m= new movefiles();
    m.move("D:\\error.txt");
} else{
    // ...
}

else 检查是不必要的,如果任何一行都没有错误(列数小于 9),那么代码的第一部分将已经迭代到文件的末尾。您要么想要:

  • 将行数据的解析移到第一个 while 循环中。
  • 将每个 String[] 数组存储在一个列表中,以便以后可以对其进行迭代

使用您的输入文件创建一个pastebin,以便我们可以验证其中没有错误。

于 2012-02-19T17:21:02.240 回答