简体   繁体   English

尝试通过读取文件打印二维数组时,我在输出中收到 Null

[英]I'm receiving Null on my output when trying to print a 2d array from reading a file

Im trying to read a file from "contacts" and putting it in a 2d array called sData.我试图从“联系人”中读取一个文件并将其放入一个名为 sData 的二维数组中。 Im trying to print the content on the console window but however i am receving null on my output.我试图在控制台窗口上打印内容,但我的输出结果为 null。 Am i trying to print the content in an incorrect way or some?我是否试图以不正确的方式或某些方式打印内容? The code was delivered to us however it seems to fail on me any help?代码已交付给我们,但它似乎对我有任何帮助?

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

replace代替

sData [line] = new String [temp.length];

with

sData [line] = temp;

you currently are just putting a empty array the size of the intended array.您目前只是放置一个与预期数组大小相同的空数组。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM