1

我是初学者程序员,我正在尝试使用我在此处找到的现有代码创建自己的数独生成器http://ostermiller.org/qqwing/QQWing.java.html我将它放在我的包中的单独文件中。

我不知道该怎么做。我试图用正确的数独数字填满我的棋盘,但它只填零。这是我的代码:

QQWing wing = new QQWing();

        try {
            wing.generatePuzzle();
        } catch (Exception e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }



      // Create the layout
      TableLayout table = new TableLayout(this);


      TableLayout.LayoutParams lp = new TableLayout.LayoutParams(
              ViewGroup.LayoutParams.FILL_PARENT,
              ViewGroup.LayoutParams.FILL_PARENT);

              table.setLayoutParams(lp); // This line has no effect! WHYYYY?!
              table.setStretchAllColumns(true);
              EditText editText[][] = new EditText[9][9];
              for (int i = 0; i < 9; ++i)
              {
              TableRow row = new TableRow(this);
              for (int j = 0; j < 9; ++j)
              {
                  editText[i][j] = new EditText(this);

                    editText[i][j].setText(String.valueOf(wing.puzzle[i*9+j]));
                    editText[i][j].setWidth(50);
                    row.addView(editText[i][j]);
              }
              table.addView(row);
              }
4

2 回答 2

1

这是斯蒂芬·奥斯特米勒,QQWing 的作者。

我很高兴地报告此问题已在 QQWing 版本 1.3.3 中得到修复。Java API 已经改进了不少:

  • Exception不再抛出
  • 随机数生成器自动初始化
  • 已经放在com.qqwing包里了

这是Test.java使用QQWing的:

import com.qqwing.*;

public class Test {
    public static void main(String[] args){
        QQWing qq = new QQWing();
        qq.generatePuzzle();
        System.out.println(qq.getPuzzleString());
    }
}

它可以像这样编译和运行:

$ javac -classpath qqwing-1.3.3.jar Test.java && java -classpath .:qqwing-1.3.3.jar Test
 . . 5 | 8 . . | 3 4 .
 . . 6 | . 7 . | . 2 1
 3 . 8 | 2 . . | . . .
-------|-------|-------
 . . . | 4 6 5 | . 1 .
 . . . | . . . | . . .
 . 7 . | 1 3 . | 6 8 .
-------|-------|-------
 . . . | . . . | 1 3 .
 . . 4 | . . . | 2 . .
 . . . | . . . | . 5 6

可以QQWing 网站下载最新版本的QQWing 。

于 2014-10-05T10:59:28.210 回答
0

这是因为您捕获了所有异常,并且应该避免这种情况。generatePuzzle() 抛出 NPE,因为 Random r 为空,因为源代码写得不好,不能仅通过实例化 QQWing 来使用。

像这样使用它开始:

QQWing.r = new Random();
QQWing wing = new QQWing();
于 2013-02-04T11:19:52.873 回答