试图填补从txt文件二维的ArrayList(Trying to fill a two dimens

2019-06-24 01:26发布

这应该是一个数独谜题解决,它需要我用一个二维的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));
        }

我得到一个Exception in thread "main" java.util.NoSuchElementException这一行cell = solutionFile.nextInt();

这是sudoku.txt文件

346791528
918524637
572836914
163257489
895143762
427689351
239415876
684372195
751968243

我试了一下一样,在第一和得到这个错误,但后来我尝试把所有的号码并将其放置在同一行,所以我的for循环将只读取它们在同一时间9个的数字,但是当我测试打印的ArrayList或者又该在它添加它们之后整个ArrayList中是空白的。

什么是它不是从文件中读取数字和将它们放入ArrayList中,以便打印机打印的问题?

Answer 1:

整数可以是多个字符。 您正在阅读的整行作为一个单一的号码,然后未能完成后九(每行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
 }


文章来源: Trying to fill a two dimensional ArrayList from txt file