所以基本上我要做的就是读取名为Products.csv的文件,然后我想将它的每一行(445行)存储到长度为445的数组中。
出于某种原因,如果我键入System.out.println(lines [2]);例如,它确实读出了文件的第2行,但是,如果我在循环中使用循环来读取所有使用此代码System.out.println(lines [a])的行,它会显示我所有null null null ....
public class Lab2
{
String [] lines = new String [446];
int x = 0;
File inFile;
public long ReadFile(String sfile) throws IOException
{
inFile = new File(sfile);
BufferedReader reader = new BufferedReader(new FileReader(inFile));
String sline = null;
while ((sline=reader.readLine()) != null)
{
lines[x]=sline;
x++;
}
reader.close();
return inFile.length();
}
public void OutputLines (String [] s)
{
for (int a=0;a<s.length;a++)
{
System.out.println (s[a]);
}
}
public static void main(String[] args)
{
try
{
Lab2 read = new Lab2();
read.ReadFile("Products.csv");
}
catch (IOException e)
{
System.out.println(e.getMessage());
}
Lab2 reader = new Lab2 ();
reader.OutputLines(reader.lines);
}
}
答案 0 :(得分:3)
您将这些线条读入一个Lab2对象,然后创建一个全新的不同Lab2对象来显示结果。不要这样做,因为第二个Lab2对象尚未填充数据,因此其数组填充了空值。而是使用相同的 Lab2对象来阅读和。
更改
public static void main(String[] args)
{
try
{
Lab2 read = new Lab2();
read.ReadFile("Products.csv");
}
catch (IOException e)
{
System.out.println(e.getMessage());
}
Lab2 reader = new Lab2 ();
reader.OutputLines(reader.lines);
}
到
public static void main(String[] args) {
try {
Lab2 read = new Lab2();
read.ReadFile("Products.csv");
// *** display data from the same Lab2 object ***
read.OutputLines(); // this shouldn't take a parameter
} catch (IOException e) {
e.printStacktrace();
}