Possible Duplicate:
Java: how to create and write to a file
I am new to java and wanted to know of theres an easy way to save/load a file to/from a desired path. Is there an easy way to do this?
I am new to java and wanted to know of theres an easy way to save/load a file to/from a desired path. Is there an easy way to do this? |
|||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
The simplest library to use it likely to be Apache FileUtils You can load/save a file as a single line.
It will take care of exception handling and make sure the file is closed. Note: this tool works best with file less than 100 MB. If you have really large files, you need to read the contents progressively yourself. |
|||
|
|
|
The plain Java runtime does not offer some file copy methods. So if we don't want to use an additional library (like FileUtils, see Peter's answer) or call external programs (like Here's a nice tutorial that shows exactly how to copy from one file to another (although: that code runs much too slow for practical use because it does not buffer the streams) |
|||
|
|