该方法返回什么样的FileChannel
对象?FileChannel.open(path)
是否仍然允许随机访问,好像如下所示?
RandomAccessFile ra = new RandomAccessFile("RandomIndeed","rw");
FileChannel fc1 = ra.getChannel();
fc1
和以下实例有什么区别fc
:
FileChannel fc = FileChannel.open(path);
基本上我想知道上面创建的两个对象之间的区别是什么,因此fc1
和fc
提前致谢。