使用open csv解析txt文件

时间:2012-02-19 16:38:31

标签: java parsing opencsv

有人能告诉我如何使用open 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库

1 个答案:

答案 0 :(得分: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,以便我们验证其中没有错误。