Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4097292

(spec) java.io.RandomAccessFile: Do constructors create files?

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P4 P4
    • None
    • 1.1
    • core-libs
    • generic
    • generic

      From: Peter Chubb <###@###.###>

      It's unclear whether the java.io.RandomAccessFile class
      actually creates a file in the filesystem.
      The documentation (in section 21.23.1) says the constructor
      `initalises a newly created RandomAccessFile by opening a connection
      to an actual file, the file named by the path name `path' in the file
      system'

      If the file named by `path' does not exist, should the constructor
      create it? Or should it throw an IOException? If it does create the
      file in the file system, what modes should it use? What is the initial
      file position?

      In other words, what system call does
      RandomAccessFile("./fred", "rw")
      map onto?
      open("./fred", O_RDWR) ?
      or
      open("./fred", O_RDWR|O_CREAT, 0666) ?
      or what?

            iris Iris Clark
            mr Mark Reinhold
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: