我想创建大量图片,所以当我按下上一个或下一个按钮以显示下一张/上一张图片时发现问题:
private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {
// TODO add your handling code here:
String t [] = new String[3];
int i = 0;
t[0] = "2.JPG";
t[1] = "1.JPG";
t[2] = "3.PNG";
try {
File f = new File(t[i]);
Image img = ImageIO.read(f);
ImageIcon icon = new ImageIcon(img);
imgspace.setIcon(icon);
i = i + 1;
} catch(Exception ex) {
showMessageDialog(null, "Nothing happen");
}
}
当我按下按钮时,输出就是一幅图像。