1

我对 Java 很陌生,所以可能对此有一个简单的解释,但无论如何我可能会觉得很愚蠢。

我正在尝试使用一种方法来读取文件,从该文件数据中填充一个二维数组,然后返回填充的数组,以便我可以在我的主类中使用它并从那里打印出数组内容。

这是我到目前为止所得到的:

public class ScoreProcessor { 
    static public readFile() throws IOException {
        File filedata = new File("src/JavaApp2/Data.txt");        
        Scanner file = new Scanner (filedata);        
        int row = 0, col = 0;            
        String[][] scores = new String[8][5];

        while (file.hasNextInt()){               
            Scanner readfile = new Scanner (filedata);
            readfile.nextLine();
            readfile.useDelimiter(",");

            while (readfile.hasNext(",")){
                String line = readfile.next();
                scores[row][col] = line; 
                col++;  
            }            
            row++;  
            col=0;
        }
        return scores;
    }    
}

任何帮助将不胜感激,谢谢。

4

3 回答 3

2

正如 Peter Lawrey 所说,您需要将 rtuerntype String[][] 添加到您的方法头中,如下所示:

static public String[][] readFile() throws IOException {
   ...

此外,如果您事先不知道大小,则不应使用数组。在这种情况下使用列表。

于 2012-10-04T10:12:48.013 回答
1
static public String[][] readFile() throws IOException {
于 2012-10-04T10:10:06.883 回答
0

关于返回在方法中声明您的返回类型。

 public static String[][] readFile() throws IOException {

关于您可以使用的打印

Arrays.deepToString(scores);
于 2012-10-04T10:12:03.723 回答