谁能告诉我如何使用打开的 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 库