gpt4 book ai didi

java - 将 .txt 文件中的数字读入二维数组并在控制台上打印

转载 作者:搜寻专家 更新时间:2023-10-31 20:27:19 24 4
gpt4 key购买 nike

所以基本上我正在尝试读取一个包含以下内容的 .txt 文件:

3 5 

2 3 4 5 10

4 5 2 3 7

-3 -1 0 1 5

并将它们存储到 2D 数组中并在控制台上打印,我从控制台得到的结果很好但只缺少第一行 3 5,我不知道我的代码有什么问题导致它忽略了第一行。我现在得到的输出:

2  3  4  5 10 

4 5 2 3 7

-3 -1 0 1 5

import java.io.*;
import java.util.*;

public class Driver0 {
public static int[][] array;
public static int dimension1, dimension2;

public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.println("Welcome to Project 0.");
System.out.println("What is the name of the data file? ");
String file = input.nextLine();
readFile(file);
}

public static void readFile(String file) {
try {
Scanner sc = new Scanner(new File(file));
dimension1 = sc.nextInt();
dimension2 = sc.nextInt();
array = new int[dimension1][dimension2];
while (sc.hasNext()) {
for (int row = 0; row < dimension1; row++) {
for (int column = 0; column < dimension2; column++) {
array[row][column] = sc.nextInt();
System.out.printf("%2d ", array[row][column]);
}
System.out.println();
}

}
sc.close();
}

catch (Exception e) {
System.out
.println("Error: file not found or insufficient requirements.");
}
}
}

最佳答案

您正在代码的这一部分读取这些数字:

dimension1 = sc.nextInt();
dimension2 = sc.nextInt();

因此 dimension1 获得 3 的值,dimension2 获得 5 的值,但您没有将它们保存到数组中。

关于java - 将 .txt 文件中的数字读入二维数组并在控制台上打印,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30814412/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com