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
feedback
|
|
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 | |||||||
feedback
|
|
If you want to be lazy and get away with writing minimal code use
| |||
|
feedback
|
|
No. Every long-time Java programmer has their own utility belt that includes such a method. Here's mine.
| |||||
|
feedback
|
|
Or use Files.copy(file1,file2) from Google's Guava library. | |||
|
feedback
|