FileChannel.open(path)
方法返回什麼樣的FileChannel
對象?RandomAccessFile vs FileChannel.open(path);
它仍然是隨機訪問允許,就像它是如下?
RandomAccessFile ra = new RandomAccessFile("RandomIndeed","rw");
FileChannel fc1 = ra.getChannel();
什麼是和下面的實例fc
fc1
之間的區別:
FileChannel fc = FileChannel.open(path);
基本上我想知道會有怎樣的兩個對象之間的差異上面創建的,因此fc1
和fc
在此先感謝。
兩個調用(至少對於Unix文件系統)都返回相同的對象(sun.nio.ch.FileChannelImpl)。 – Perception 2013-05-09 15:32:09