用于运行的程序,现在给出ArrayIndexOutOfBounds Exception?

时间:2013-01-22 01:56:21

标签: java buffer image indexoutofboundsexception

我正在尝试运行我的老师在线发布的代码。它将图像(BufferedImage img = ImageIO.read(new File(args[0]));

作为输入

我第一次运行它工作正常,现在它在上面一行给我ArrayIndexOutOfBounds例外。

1 个答案:

答案 0 :(得分:3)

也许你没有传递任何命令行参数?然后args的长度为0,[0]会导致数组索引超出边界异常。