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
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.
|
|
No, there is no built-in method to do that. The closest to what you want to accomplish is the
And don't forget to handle exceptions and close everything in a |
|||||||||
|
|
If you want to be lazy and get away with writing minimal code use
|
|||
|
|
|
No. Every long-time Java programmer has their own utility belt that includes such a method. Here's mine.
|
|||||
|
|
|
Or use Files.copy(file1,file2) from Google's Guava library. |
|||
|
|