我有以下 Java 类,我用它来读取 .data 文件:
import java.io.*;
import java.util.Scanner;
public class ReadFile {
static File file;
String[] columns = new String[]{"personID", "lastName", "firstName", "street", "city"};
String[] data = new String[100];
String filename = "D:\\Users\\Elgan Frost\\Desktop\\careers\\Smart Stream Associate Software Engineer (Java) - Bristol\\assessment\\srcPerson.data";
public ReadFile(File f) throws FileNotFoundException {
// TODO Auto-generated constructor stub
try{
//File = new File("D:\\Users\\Elgan Frost\\Desktop\\careers\\Smart Stream Associate Software Engineer (Java) - Bristol\\assessment\\srcPerson.data");
f = new File("D:\\Users\\Elgan Frost\\Desktop\\careers\\Smart Stream Associate Software Engineer (Java) - Bristol\\assessment\\src\\Person.data");
Scanner scanner = new Scanner(f);
while(scanner.hasNextLine()){
System.out.println(scanner.nextLine());
}
scanner.close();
}
finally{
}
}
public void read(File file2) throws IOException{
FileReader fr = new FileReader("D:\\Users\\Elgan Frost\\Desktop\\careers\\Smart Stream Associate Software Engineer (Java) - Bristol\\assessment\\src\\Person.data");
BufferedReader br = new BufferedReader(fr);
String line;
int i = 0;
while((line = br.readLine())!= null){
data[i] = line;
System.out.println(data[i]);
i++;
}
br.close();
String[] dataNew = new String[i];
System.arraycopy(data, 0, dataNew, 0, i);
data = dataNew;
System.out.println("Data length: " + data.length);
}
}
为了让您更全面地了解我的代码,我还有以下 Java 类,其中包含我的 main 方法:
import java.io.*;
public class Person {
public static void main(String[] args) throws IOException {
// TODO Auto-generated method stub
ReadFile rf = new ReadFile(f);
rf.read(ReadFile.file);
}
static File f;
public String id;
public String lastName;
public String firstName;
public String street;
public String city;
public void readPerson() throws FileNotFoundException{
//File f = new File("Smart Stream Associate Software Engineer (Java) - Bristol/assessment/src/Person.java");
//InputStream IS = new FileInputStream(f);
}
}
目前,当我运行我的程序时,控制台显示两行“Person.data ....”并给出正在读取的 .data 文件的文件路径,该文件来自这些行System.out.println(scanner.nextLine());
和System.out.println(data[i]);
我的 ReadFile .java 类,以及“数据长度:1”行,这将来自System.out.println("Data length: " + data.length);
类末尾的行。
我假设这意味着程序已经读取了 .data 文件的前两行,但只存储了第一行。
我想要发生的是,它读取第一行,将其存储在字符串中,然后将字符串分成单独的字符串,只要出现“空格”,然后将每个字符串存储在字符串数组的元素中我在课程开始时创建的 - 使用以下行:
String[] columns = new String[]{"personID", "lastName", "firstName", "street", "city"};
单独的字符串应按该顺序存储到每个字符串中 - 因此第一个字符串(在原始字符串中的第一个空格之前)将存储在“personID”中,第二个字符串(在第一个空格之后,第二个之前)将被存储在“姓氏”等
然后我想做的是依次读取文件中的每一行,将每一行的元素存储到我的“列”字符串数组的下一个“行”中(基本上是使用数组创建一个数据表数组),其中每个数组的第一个元素是“personID”,第二个元素是“lastName”,等等。
我想这样做,直到我到达文件的末尾,然后打印“列”数组的几个元素的内容,只是为了表明它已经工作了。
我不确定我会怎么做,只是想知道是否有人能指出我正确的方向?