我有一个 .csv 文件,并且我了解如何在 Java 中读取它,我的问题是我希望能够将文件内的值放入一个字符串中,然后读取该字符串,以便我可以计算这些值。
爱丽丝琼斯,80,90,100,95,75,85,90,100,90,92 鲍勃
曼弗雷德,98,89,87,89,9,98,7,89,98,78
这些是值,现在我如何将每个名称旁边的所有整数相加并创建一个平均值?我最大的问题是当我读取文件时,它位于 While 循环中,然后能够打印出这些行,就像它在控制台中看到的那样,但是当我想在 While 循环之外打印值时,它说字符串没有'不存在,因此如果其中没有任何内容,我无法计算这些值。
import java.io.*;
import java.util.*;
public class Grades {
public static void main(String args[]) throws IOException
{
try{
// Open the file that is the first
// command line parameter
FileInputStream fstream = new FileInputStream("filescores.csv");
BufferedReader br = new BufferedReader(new InputStreamReader(fstream));
String strLine;
//Read File Line By Line
while ((strLine = br.readLine()) != null) {
// Print the content on the console
String line = strLine
System.out.println (strLine);
}
//Close the input stream
in.close();
}catch (Exception e){//Catch exception if any
System.err.println("Error: " + e.getMessage());
}
}
}