我正在使用applet在java中制作一个迷宫游戏,我在我的图像上实现了一个开关案例,这样如果我赢了,我可以转到下一个图像。但是当我尝试在交互面板中运行它时(因为图像对于默认的applet大小而言太大)使用 import edu.rice.cs.plt.swing.SwingUtil; SwingUtil.showApplet(new mazeGameTest(),700,700); 它给我一个错误,说无效的顶级声明。
Image backImage;
BufferedImage image=null;
int[] dataBuffInt;
switch(flag){
case 0: try {
image = ImageIO.read(new File("firstMaze.jpg"));
}
catch (IOException e) { System.out.println("image did not load"); }
break;
}
dataBuffInt = image.getRGB(0, 0, this.getSize().width, this.getSize().height, null, 0, this.getSize().width);
我搜索了互联网,但他们的解决方案并没有解决这个问题。 提前谢谢。