Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to copy my image file by name From E:\Tejas\FM_Operations\source to E:\Tejas\FM_Operations\destination in a such way that if I call the MovePhoto(source,destination,filename) method, then my image will copied to the destination folder in Java.

share|improve this question
1  
Ok. So what have you tried already? – Oli Charlesworth Apr 17 '11 at 11:02
The title talks about multiple files (one by one). The question is just about one file. Note: In Java, you write method calls with small initial. And: Where's the problem? – user unknown Apr 17 '11 at 11:14

1 Answer

up vote 2 down vote accepted

You might want to consider using FileUtils.copyFile() from Apache Commons IO. Otherwise you'll have to copy the bytes manually, like this:

InputStream in = new FileInputStream(new File("/path/to/src"));
OutputStream out = new FileOutputStream(new File("/path/to/dest"));
byte[] buffer = new byte[8192];
int len;
while ((len = in.read(buffer)) != -1) {
    out.write(buffer, 0, len);
}
in.close();
out.close();
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.