Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Although creating a file is generally accomplished with a single method call, it actually has several issues to consider. What should be done if the file cannot be created? What should be done if the file already exists? What should be the file's initial attributes, such as permissions? Java provides several generations of file handling facilities.   The original input/output facilities, which included basic file handling, are in the package java.io.   More comprehensive facilities were included in JDK 1.4 with the so called "New I/O" package java.nio (see [Oracle 2010b]). This package introduced a number of methods to handle fine-grained control of file creation.

...