What's the simplest way to create and write to a file in Java?
I know this is a very basic question, but the web is full of different answers for different versions of Java and it would be nice to have an answer here on StackOverflow.
|
|
|
Creating a text file (note that this will overwrite the file if it already exists):
Creating a binary file (will also overwrite the file):
|
|||||||||||
|
See also here (includes NIO2) |
|||||
|
|
If you wish to have a relatively pain-free experience you can also have a look at the apache commons IO package, more specifically the FileUtils class. Never forget to check third-party libraries. Yoda time for date manipulation, StringUtils for common string operations and such can make your code more readable. Java is a great language, but the standard library is sometimes a bit low-level. Powerful, but low-level nonetheless. |
|||
|
|
|
|||
|
|
|
If you for some reason want to separate the act of creating and writing, the Java equivalent of
|
|||
|
|
Using |
|||
|
|
|
Here's a little program example to create/overwrite a file, the LONG version, to get to understand more easily what's going on and where it is all going.
|
|||
|
|