0

我正在尝试将 ArrayList 以特定格式保存到文本文件中。它的格式正确,但它只打印出块 ArrayList 中一个元素的颜色。我知道问题出在 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;
}
4

1 回答 1

0

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

public Color getBlockColor(int row, int column) {
    return blocks[row][column].getBackground();
}
于 2013-04-14T00:03:29.533 回答