我的代码应该读取文件并将每一行(每条记录)存储到一个字符串数组中。
我的txt文件是这样的:
FName Lname Number
second secondsecond 22
thired thithird 33
fourth fourfourr 44
fifth fiffif 55
但是,当我运行我的代码时,我的程序不显示每行的第一个字符!像这样显示:
econd secondsecond 22
hired thithird 33
ourth fourfourr 44
ifth fiffif 55
我的代码:
public class ReadfileIntoArray {
String[] columns=new String[] {"FName","Lname","Number"};
String[] data=new String[100];
public void read() throws IOException{
FileReader fr=new FileReader("D:\\AllUserRecords.txt");
BufferedReader br=new BufferedReader(fr);
String line;
while((line=br.readLine())!=null){
for(int i=0;i<=br.read();i++){
data[i]=br.readLine();
System.out.println(data[i]);
}
}
br.close();
System.out.println("Data length: "+data.length);
}
public static void main(String[] args) throws IOException{
ReadfileIntoArray rfta=new ReadfileIntoArray();
rfta.read();
}
}
我想看到数据长度:5(因为我有五行),但我看到 100!
(我想要抽象表模型的这些信息)
谢谢你。