Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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{ 
    } 
}
share|improve this question

2 Answers

up vote 0 down vote accepted

Use File#renameTo().

File file = imageFileChooser.getSelectedFile(); 
File destination = new File("/path/to/new/location", file.getName());
boolean success = file.renameTo(destination);
// You might want to check success result here.
share|improve this answer
It would be good to mention that behavior of renameTo() is platform-dependent, and most probably will not work if the destination is on a different partition. – Denis Tulskiy Dec 26 '10 at 16:59
It's at least faster. You could also combine both. If renameTo() returns false, then try it by streaming. – BalusC Dec 26 '10 at 17:54

JFileChooser has a getSelectedFile() method, use that, then open a FileInputStream with that file. Then create a FileOutputStream with the desired destination. Then you can get FileChannels and use the transferTo() method:

int size = file.getLength();
fileInputStream.getChannel().transferTo(0, size, fileOutputStream.getChannel());
fileOutputStream.close();
file.delete();
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.