标签: java buffer image indexoutofboundsexception
我正在尝试运行我的老师在线发布的代码。它将图像(BufferedImage img = ImageIO.read(new File(args[0]));
(BufferedImage img = ImageIO.read(new File(args[0]));
我第一次运行它工作正常,现在它在上面一行给我ArrayIndexOutOfBounds例外。
ArrayIndexOutOfBounds
答案 0 :(得分:3)
也许你没有传递任何命令行参数?然后args的长度为0,[0]会导致数组索引超出边界异常。