我有这个包含各种信息的文本文件,到目前为止,我已经能够读取除地址详细信息外的所有内容,因为它们由空格分隔,并且包含数字和字母,所以我有点卡住了,我尝试将其作为int读取,但我知道它不会工作。
这是我的代码:
public void methodName() {
File vData = new File("src/volunteer_data.txt"); // Create file object
try { // try catch to handle exception
Scanner readFile = new Scanner(vData); // Create scanner object
while (readFile.hasNextLine()) { //
int volunteerID = readFile.nextInt(); // Read volunteerID as an int
String vName = readFile.nextLine(); // Read volunteer name as string
// DATATYPE address = readFile.nextSOMETHING(); // Read address as ....
String contact = readFile.nextLine(); // Read contact number as a string
}
readFile.close(); // Close scanner
} catch(FileNotFoundException e) { // Throw exception and stop program if error found
e.printStackTrace();
}
这是我正在阅读的文本文件。以制表符分隔:
VolunteerID Name Address Contact
050 John 24 Willow Street 905-747-0876
042 Emily 362 Sunset Avenue 905-323-1234
013 Alice 16 Wonderland Street 905-678-0987
071 Arthur 36 York Road 905-242-5643
060 Daniel 125 Ottawa Street 905-666-3290
055 Peppa 64 Great Britain Blvd 905-212-4365
024 Sean 909 Green Avenue 905-232-5445
077 Kim 678 Grape Garden 905-080-7641
098 Patrick 126 Oxford Street 905-099-9535
092 Laura 45 Mill Street 905-244-0086
008 Gary 84 California Street 905-767-3456
我的建议是不要使用nextInt()
等分别扫描每个列。从长远来看,它会导致痛苦和折磨。相反,扫描整行并处理该行:将其拆分为列的String[]
,然后分别处理列:
readFile.nextLine(); // skip heading line (if there is one)
while (readFile.hasNextLine()) {
String line = readFile.nextLine(); // read whole line
String[] columns = line.split("t"); // split line on tab char
// get each column into variables
int volunteerID = Integer.parseInt(columns[0]);
String vName = columns[1];
String address = columns[2]; // no big deal
String contact = columns[3];
// do something with variables
}
严格地说,你甚至不需要变量。你可以直接使用数组和索引,但是当你使用命名良好的变量时,它更容易阅读和调试。