我是java新手,我需要使用opencsv项目读取csv文件。请指导我在哪个文件和我必须放置代码的地方:
CSVReader reader = new CSVReader(new FileReader("yourfile.csv"));
String [] nextLine;
while ((nextLine = reader.readNext()) != null) {
// nextLine[] is an array of values from the line
System.out.println(nextLine[0] + nextLine[1] + "etc...");
}
非常感谢, 问候, 费萨尔
答案 0 :(得分:0)
确保“youfile.csv”位于项目的根目录。
变量“nextLine”不需要是数组。
String nextLine;
while ((nextLine = reader.readNext()) != null) {
System.out.println(nextLine);
}
这将打印掉所有行,因为print语句在循环中。