メソッドはどのようなFileChannel
オブジェクトをFileChannel.open(path)
返しますか?
以下のようにランダム アクセスが許可されますか?
RandomAccessFile ra = new RandomAccessFile("RandomIndeed","rw");
FileChannel fc1 = ra.getChannel();
fc1
と次のインスタンスの違いは何ですかfc
:
FileChannel fc = FileChannel.open(path);
基本的に、上記で作成した 2 つのオブジェクトの違いを知りたいのでfc1
、fc
前もって感謝します。