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.

I have two Java.io.File objects file1 and file2. I want to copy the contents from file1 to file2. Is there an standard way to do this without me having to create a method that reads file1 and write to file2

share|improve this question
3  

4 Answers

up vote 9 down vote accepted

No, there is no built-in method to do that. The closest to what you want to accomplish is the transferFrom method from FileOutputStream, like so:

  FileChannel src = new FileInputStream(file1).getChannel();
  FileChannel dest = new FileOutputStream(file2).getChannel();
  dest.transferFrom(src, 0, src.size());

And don't forget to handle exceptions and close everything in a finally block.

share|improve this answer
2  
Whoah. You've taught me. – Jonathan Feinberg Mar 26 '10 at 0:56
A more complete (and correct) version of this answer is available here: stackoverflow.com/questions/106770/…. Thanks to stackoverflow.com/users/92937/twentymiles for schooling all of us. – vkraemer Mar 26 '10 at 3:20
Complete and Efficient Ans : gist.github.com/mrenouf/889747 – nidhi_adiga May 8 at 13:58

If you want to be lazy and get away with writing minimal code use FileUtils.copyFile(src, dest) from Apache IOCommons

share|improve this answer
This is the way to go ! – Calm Storm Mar 26 '10 at 11:41

No. Every long-time Java programmer has their own utility belt that includes such a method. Here's mine.

public static void copyFileToFile(final File src, final File dest) throws IOException
{
    copyInputStreamToFile(new FileInputStream(src), dest);
    dest.setLastModified(src.lastModified());
}

public static void copyInputStreamToFile(final InputStream in, final File dest)
        throws IOException
{
    copyInputStreamToOutputStream(in, new FileOutputStream(dest));
}


public static void copyInputStreamToOutputStream(final InputStream in,
        final OutputStream out) throws IOException
{
    try
    {
        try
        {
            final byte[] buffer = new byte[1024];
            int n;
            while ((n = in.read(buffer)) != -1)
                out.write(buffer, 0, n);
        }
        finally
        {
            out.close();
        }
    }
    finally
    {
        in.close();
    }
}
share|improve this answer
No copyFileToInputStream? – Software Monkey Mar 26 '10 at 0:35
This was an excerpt. :) – Jonathan Feinberg Mar 26 '10 at 0:56

Or use Files.copy(file1,file2) from Google's Guava library.

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.