我正在尝试读取名为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);
}
答案 0 :(得分:0)
使用Class.getResourceAsStream()
的直接SDK是您需要的而不是File
。
如果在Spring中使用ResourceLocator.getResource("classpath:circle1.bmp")
;