In java swong , Using JFileChooser,i want to select an image and move the selected image to a desired folder.
But dont know how to move?
Update: this is what I did
public void actionPerformed(ActionEvent evt) {
imageFileChooser.setVisible(true);
int checkIfOpened = imageFileChooser.showOpenDialog(this);
if (checkIfOpened == JFileChooser.APPROVE_OPTION) {
File file = imageFileChooser.getSelectedFile();
// int size = file.getLength();
// don't know what to do here
}else{
}
}
