第一次在这里发布,但是我对不更改给定数组中的值的方法有疑问。
我认为数组是通过引用传递的,因此在方法中更改数组将在数组中对其进行更改。但是,这对我不起作用,我也不知道为什么。
我的代码如下。不起作用的方法是readFile()
package StudentsGrades;
import java.io.*;
import java.lang.*;
public class StudentsGrades {
public static void main(String [] args ) {
int numberOfLines = 0;
String fileName = "";
fileName = "marks_file.csv";
//Obtain the number of lines in the given csv.
numberOfLines = getNumberLines(fileName);
System.out.println(numberOfLines);
//initialise the arrays that the data will be stored in.
double[] gradesArray = new double[numberOfLines];
String[] studentsArray = new String[numberOfLines];
if (numberOfLines > 0) {
readFile(studentsArray, gradesArray, numberOfLines, fileName);
}
System.out.println(studentsArray[4]);
}
public static int getNumberLines (String importFile) {
int numLines = 0;
try {
FileReader fnol = new FileReader(importFile);
LineNumberReader lnr = new LineNumberReader(fnol);
while (lnr.readLine() != null ) {
numLines++;
}
} catch (FileNotFoundException fe) {
System.out.println("The file cannot be found");
} catch (Exception e) {
System.out.println("Invalid");
}
return numLines;
}
public static void readFile (String [] studentsArray, double[] gradesArray, int numLines, String fileName ) {
try {
String lineData = null;
FileReader fr = new FileReader(fileName);
BufferedReader br = new BufferedReader(fr);
String currentLine = "";
while ((currentLine = br.readLine()) != null ) {
//Store the current Line in a string
String[] lineDataArray = currentLine.split("\\s*,\\s*");
//To index its position in the array
int index = 0;
//System.out.println(lineDataArray[1]);
studentsArray[index] = lineDataArray[0];
gradesArray[index] = Double.parseDouble(lineDataArray[1]);
System.out.println("Student: " + studentsArray[index]
+ " Grade: " + gradesArray[index]);
index++;
}
} catch (Exception e) {
System.out.println("Unexpected value in file.");
}
}
}
输出
学生:Christopher Lee成绩:54.0 学生:斯坦利·赖特成绩:90.5 学生:Oliver Stewart成绩:75.8 学生:张洁仪成绩:34.65 学生:Adam Bweon成绩:66.6 学生:杨丽仪成绩:88.9 空
您可以看到最后一个值是null
,也就是我尝试从Main
内的数组中打印一个值时。
答案 0 :(得分:5)
将int index=0;
放在循环之外。
如果要填充数组,则需要在循环之前声明index
。
由于现在它在循环内,因此每次都将其重新声明并初始化为0。
因此,使用索引时索引始终为0,并且覆盖了值。