在java中读取.bmp文件时抛出llOExcption

时间:2012-10-28 00:52:25

标签: java exception

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

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

  

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);
}

1 个答案:

答案 0 :(得分:0)

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

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