所以我一直坚持这个问题一个星期了。
我需要从我正在阅读的文件的最后一列获取值。 但是当我尝试在while循环之外读取该数组时,我得到零而不是值。
但是如果我在while循环中读取相同的数组,我得到的值非常好。
BufferedReader br2 = new BufferedReader(new FileReader("/home/manofsteel/yeast_training.txt"));
// Starting to read a file line by line.
while((line = br2.readLine()) != null)
{
row = 0;
String[] valsNew = line.trim().split("\\s+"); /* Getting rid of all
spaces since the file
contains a lot of them. */
cla = new int[lines];
cla[row] = Integer.parseInt(valsNew[8]); /* 8 because i need the
values from last column. */
row++;
}
for(int i=0;i<cla.length;i++)
{
// Trying to print back that array.
System.out.println("x"+cla[i]);
}
}
我得到的输出是
x0
x0
x0
x0
我想要的输出是
x4
x1
x1
x1
x2
x7
x2
x7
欢迎任何建议。
如果您认为我需要共享输入文件。请告诉我。
感谢。
答案 0 :(得分:2)
我认为这不会起作用,因为您用于存储数据的数组总是在每次迭代中重新初始化:
cla = new int[lines];
而且,我不确定你是否总是想在每次执行新的迭代时将行设置为零(因为最后你正在进行行++;):
row = 0;