さて、これらの値を含む .csv ファイルを取得するためのこのコードがあります。
Alice Jones,80,90,100,95,75,85,90,100,90,92
Bob Manfred,98,89,87,89,9,98,7,89,98,78
名前と対応する成績を取得して、それらの平均を計算したいと思います。私が立ち往生している部分は、実際にファイルでこれらの値を取得して、実際に使用できるようにすることです。整数を取り出すことができるように、文字列を読み取るために何を使用しますか?
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
System.out.println (strLine);
}
//Close the input stream
in.close();
}catch (Exception e){//Catch exception if any
System.err.println("Error: " + e.getMessage());
}
}
}