以特定格式打印2D阵列的ArrayList

时间:2013-04-13 23:52:52

标签: java

我正在尝试将ArrayList保存为特定格式的文本文件。它的格式正确,但它只打印出BlockList中一个元素的颜色。我知道问题在于getBlockColor()方法,实现此方法的最佳方法是什么?这是我到目前为止所做的。

这是具有框架ArrayList的类中的方法。

public void saveFrames(String fileName) {
    System.out.println("**method save writes data back to a file "
            + fileName);
    try {
        PrintWriter outfile = new PrintWriter(new OutputStreamWriter(
                new FileOutputStream(fileName)));
        outfile.println(frames.size());
        outfile.println(Frame.getCOLUMNS());
        for (Frame f : frames) {
            for (int i = 0; i < 20; i++) {
                for (int j = 0; j < 20; j++) {
                    Color a = f.getBlockColor();
                    if (a.equals(Color.white)) {
                        outfile.print("w");
                    }
                    if (a.equals(Color.orange)) {
                        outfile.print("o");
                    }
                    if (a.equals(Color.red)) {
                        outfile.print("r");
                    }
                    if (a.equals(Color.yellow)) {
                        outfile.print("y");
                    }
                    if (a.equals(Color.green)) {
                        outfile.print("g");
                    }
                    if (a.equals(Color.blue)) {
                        outfile.print("b");
                    }

                }
                outfile.println("");
            }
        }
        outfile.close();
    }

    catch (IOException e) {
        System.out.println("file not found try again");
    }
}

这是来自框架的代码,用于获取块的颜色。

public Color getBlockColor() {
    for (int ROWS = 0; ROWS < 20; ROWS++) {
        for (int COLUMNS = 0; COLUMNS < 20; COLUMNS++) {
            blockColor = blocks[ROWS][COLUMNS].getBackground();
        }
    }
    return blockColor;
}

1 个答案:

答案 0 :(得分:0)

我认为你在获得块颜色方面犯了一个小错误。 我想你应该返回特定行和列的颜色,如下所示:

public Color getBlockColor(int row, int column) {
    return blocks[row][column].getBackground();
}