【发布时间】:2019-11-29 02:25:17
【问题描述】:
我试图从“联系人”中读取一个文件并将其放入一个名为 sData 的二维数组中。 我试图在控制台窗口上打印内容,但是我在输出中收到 null。 我是否试图以不正确的方式或某些方式打印内容? 代码已交付给我们,但它似乎对我没有任何帮助?
Joe - 1111245678
Tom - 3431234567
Lom - 7771234568
King - 76681234567
Dom - 6842234567
import java.io.*;
import java.util.Scanner;
public class phonenumbers {
public static void main(String[] args) throws Exception {
// TODO Auto-generated method stub
File f= new File ("Contacts.txt");
ReadData(f);
}
public static void printArr (String [][] hex) throws Exception{
for (int row = 0; row < hex.length; row++) {
for (int column = 0; column < hex[row].length; column++) {
System.out.print(hex[row][column] + " ");
}
System.out.println();
}
}
public static int CountLines(File f) throws Exception {
int lines = 0;
Scanner reader = new Scanner (f);
while (reader.hasNextLine()) {
String s = reader.nextLine();
s = s.trim();
if (s.length() == 0) {
break;
}
lines++;
}
reader.close();
return lines;
}
public static String [][] ReadData(File f) throws Exception {
Scanner reader = new Scanner (f);
int numLines = CountLines(f);
String [][] sData = new String [numLines] [];
for (int line = 0; line <numLines; line++ ) {
String l = reader.nextLine();
l = l.trim();
String [] temp = l.split(" ");
sData [line] = new String [temp.length];
}
printArr(sData);
reader.close();
return sData;
}
}
Output
null null null
null null null
null null null
null null null
null null null
【问题讨论】:
-
你永远不会给你的数组赋值,所以它的元素保持
null。 -
完全正确 - 您放入数组的唯一内容是空字符串。您永远不会将
temp的items 放入数组中。 -
只需将
String [] temp = l.split(" "); sData [line] = new String [temp.length];更改为sData[line] = l.split(" ");即可 -
BRUH,非常感谢您
标签: java arrays file multidimensional-array file-io