gpt4 book ai didi

java - 试图从 txt 文件中填充二维 ArrayList

转载 作者:行者123 更新时间:2023-11-29 03:47:14 25 4
gpt4 key购买 nike

这应该是一个 Sudoku Puzzle 解算器,我需要使用二维 ArrayList 来解决这个难题。

我正在尝试使用 txt 文件中的数字填充 ArrayList。我的测试类中的代码可以制作一个 9x9 ArrayList 并使用我为测试二维 ArrayList 的填充方式而创建的循环用数字 1-9 填充它。

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

public class test
{
public static void main(String args[])
{
ArrayList<ArrayList<Integer>> data = new ArrayList<ArrayList<Integer>>();

//Loop to add 9 rows
for(int i=1; i<=9; i++)
{
data.add(new ArrayList<Integer>());
}

//Loop to fill the 9 rows with 1-9
for(int k=0; k<9; k++)
{
for(int j=1; j<=9; j++)
{
data.get(k).add(j);
}
}

//Loop to print out the 9 rows
for(int r=0; r<9; r++)
{
System.out.println("Row "+(r+1)+data.get(r));
}

//Reads the file. Need to use this to set the array
File file = new File("F:\\Data Structures 244\\FINAL PROJECT\\SudokuSolver\\sudoku.txt");

try {

Scanner scanner = new Scanner(file);

while (scanner.hasNextLine()) {
String line = scanner.nextLine();
System.out.println(line);
}
scanner.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
}
}
}

当我尝试获取存储在 txt 文件中的数字并使用它们按照读取顺序填充 ArrayList 时,我的问题就来了。我尝试了这段代码,以便它可以从 txt 文件中读取数字并通过重复将其放入 ArrayList 中,这样它将把 txt 文件中的前 9 个数字放入 ArrayList 的第一行,然后转到下一个txt 文件中的行以及用于填充这些数字的 ArrayList。

File file = new File("F:/Data Structures 244/FINAL PROJECT/SudokuSolver/sudoku.txt");

//Needs this try and catch
try {
Scanner solutionFile = new Scanner(file);
int cell=0;
while (solutionFile.hasNextInt())
{
//Loop to fill the 9 rows with the numbers from the sudoku.txt
for(int k=0; k<9; k++)
{
for(int j=1; j<=9; j++)
{
cell = solutionFile.nextInt();
data.get(k).add(cell);
}

}
}
solutionFile.close();
}

catch (FileNotFoundException e)
{
e.printStackTrace();
}

for(int r=0; r<9; r++)
{
System.out.println("Row "+(r+1)+data.get(r));
}

我在线程“main”java.util.NoSuchElementException 中得到一个异常
这行 cell = solutionFile.nextInt();

这是 sudoku.txt 文件

346791528
918524637
572836914
163257489
895143762
427689351
239415876
684372195
751968243

我一开始是这样尝试的,但得到了那个错误,但后来我尝试把所有的数字放在一行上,这样我的 for 循环一次只能读取 9 个数字,但是当我测试打印 ArrayList 时或者在添加它们之后应该在其中的内容整个 ArrayList 是空白的。

它不从文件中读取数字并将它们放入 ArrayList 以便打印,这有什么问题?

最佳答案

一个整数可以是多个字符。您将整行作为一个数字读取,然后在完成 9 次读取(每行 1 次)后失败。

您可以重新格式化您的文本文件,以便将数字分开:(我相信如果不是换行,空格肯定会起作用)

很喜欢

3 4 6 7 9 1 5 2 8
...

或者你可以读取整个数字并自己解析

int temp = solutionFile.nextInt();

for(int i = 8; i > 0; i--) {
int cell = temp / (10 * i);
data.get(k).add(cell);
}

//add the last cell
int cell = temp % 10;
data.get(k).add(cell);

或者您可以将值作为字符串读取并解析它

String line = solutionFile.next();

for(int i = 0; i < line.length; i++) {
Integer cell = Integer.parseInt(line.substring(i, i+1));
data.get(k).add(cell);
}

这不是打印数字列表的有效方法(ArrayList 的 toString 不会打印列表,您必须手动打印)

 for(int r=0; r<9; r++)
{
System.out.println("Row "+(r+1)+data.get(r));
}

应该是这样的

 for(int r = 0; r < data.size(); r++)
{
System.out.print("Row " + (r+1) + ": ");
for(Integer num : data.get(r)) {
System.out.print(num + " ");
}
System.out.println(); //to end the line
}

关于java - 试图从 txt 文件中填充二维 ArrayList,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10357302/

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