0

我正在尝试读取一个名为 .bmp 的文件circle1,该文件是一个已导入包含以下方法的类的包。

到目前为止,我有以下代码,但是当我运行以下代码时,我得到:

javax.imageio.llOException:无法读取输入文件!

public void setUp() throws IOException
{
    // minimumOverlapScore < synapsesPerSegment(not yet a field)

    BufferedImage image = ImageIO.read(new File("circle1.bmp"));
    byte[][] greenInputData = new byte[30][40];

    for (int x = 0; x < inputData.length; x++)
    {
        for (int y = 0; y < inputData[x].length; y++)
        {
            int color = image.getRGB(x, y);
            //alpha[x][y] = (byte)(color>>24);
            //red[x][y] = (byte)(color>>16);
            greenInputData[x][y] = (byte)(color>>8);
            //blue[x][y] = (byte)(color);
        }
    }
    this.inputData = greenInputData;

    System.out.println(this.inputData);
}
4

1 回答 1

0

在直接 SDK 中使用Class.getResourceAsStream()是您需要的,而不是File.

如果在 Spring 中使用ResourceLocator.getResource("classpath:circle1.bmp")

于 2012-10-28T00:57:26.210 回答