NetBeansのJPanelに画像を追加して表示することができましたが、ボタンを押すだけで次の画像に移動する方法がわかります。
このコードを使用して画像を追加しました:
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt){
// TODO add your handling code here:
JFileChooser fileChooser = new JFileChooser();
int result = fileChooser.showOpenDialog(null);
if ( result == JFileChooser.APPROVE_OPTION ){
String Ruta = fileChooser.getSelectedFile().getAbsolutePath();
jTextField1.setText(Ruta);
Icon icon = new ImageIcon(Ruta);
jLabel2.setIcon(icon);
JOptionPane.showMessageDialog(this,"You chose to open this file: " +
fileChooser.getSelectedFile().getName());
}
}
そして、「jButton2」というボタンを押すと、フォルダから手動で再度選択することなく、次の画像を取得できます。
例えば:
private void jButton2ActionPerformed(java.awt.event.ActionEvent evt){
// TODO add your handling code here:
}
どうもありがとうございます。