Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下の違いが知りたいです。
FileChannel fc = FileChannel.open(); RandomAccessFile ra = new RandomAccessFile("RandomFile", "rw");
Java 7以降、クラスがFileChannel実装するSeekableByteChannelため、ファイルにランダムにアクセスするために必要なものがすべて含まれています。
FileChannel
SeekableByteChannel
両者はまったく同じと言えますか?