6963828: TEST_BUG: java/nio/channels/FileTransfer.java takes too long (win)

Alan Bateman Alan.Bateman at oracle.com
Thu Jun 24 05:45:26 PDT 2010


Rémi Forax wrote:
> :
> Alan, is there a way to create a RandomAccessFile form a Path ?
Not directly so it requires using the String representation, eg:

  Path file = ..
  RandomAccessFile raf = new RandomAccessFile(file.toString(), "rw")

-Alan.






More information about the nio-dev mailing list