有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

java ArrayIndexOutOfBoundsException,但不访问任何索引

由于某种原因,我得到了ArrayIndexOutOfBoundsException错误,我没有尝试访问数组的任何元素,我只想设置大小,并通过引用传递给I.getRGB()

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package Logic;

import java.awt.image.BufferedImage;
import java.io.IOException;
import javax.imageio.ImageIO;

/**
 *
 * @author Steven, even(RageZone), Zingzags(PokeCommunity)
 */
public class SpriteSheet {

    private String path;
    private final int size;
    private int[] pixels;

    public static SpriteSheet tiles = new SpriteSheet("/Tilesets/Outside.png", 256);

    public SpriteSheet(String path, int size){
        this.path = path;
        this.size = size;
        pixels = new int[this.size * this.size];
        load();
    }

    public int getPixels(int params){
       return pixels[params];
    }

    public int getSize(){
        return size;
    }

    public int[] getPixels(){
        return pixels;
    }

    private void load(){
        try{
            BufferedImage im = ImageIO.read(SpriteSheet.class.getResource(path));
            int w = im.getWidth();
            int h = im.getHeight();
            im.getRGB(0, 0, w, h, pixels, 0, w);
        } catch(IOException ex){
            ex.printStackTrace();
        }
    }
}

错误:

    Exception in thread "Display" java.lang.ExceptionInInitializerError
    at Logic.Sprite.<clinit>(Sprite.java:16)
    at Logic.Screen.render(Screen.java:46)
    at game.Game.render(Game.java:82)
    at game.Game.run(Game.java:109)
    at java.lang.Thread.run(Thread.java:722)
Caused by: java.lang.ArrayIndexOutOfBoundsException: 65536
    at java.awt.image.BufferedImage.getRGB(BufferedImage.java:958)
    at Logic.SpriteSheet.load(SpriteSheet.java:47)
    at Logic.SpriteSheet.<init>(SpriteSheet.java:27)
    at Logic.SpriteSheet.<clinit>(SpriteSheet.java:21)
    ... 5 more

共 (1) 个答案

  1. # 1 楼答案

    For some reason I am getting the ArrayIndexOutOfBoundsException error, I am not trying to access any of the elements of the array, all I want to do is set the size, and pass by reference to the i.getRGB().

    根据^{}方法的javadoc:

    "An ArrayOutOfBoundsException may be thrown if the region is not in bounds. However, explicit bounds checking is not guaranteed."


    至于异常的原因,我认为问题在于pixels数组不够大,无法容纳要提取的图像区域。在size和您正在阅读的图像的尺寸之间没有明显的相关性。(但是,现在还不清楚您在load方法中实际要做什么…)