Java java.nio.channels FileChannel
PreviousNextBy API
The following index lists the tutorials for FileChannel by API.
Methods
- Java FileChannel close()
- Java FileChannel lock()
- Java FileChannel lock(long position, long size, boolean shared)
- Java FileChannel map(MapMode mode, long position, long size)
- Java FileChannel position()
- Java FileChannel position(long newPosition)
- Java FileChannel read(ByteBuffer dst)
- Java FileChannel read(ByteBuffer dst, long position)
- Java FileChannel read(ByteBuffer[] dsts)
- Java FileChannel size()
- Java FileChannel transferFrom(ReadableByteChannel src, long position, long count)
- Java FileChannel transferTo(long position, long count, WritableByteChannel target)
- Java FileChannel tryLock()
- Java FileChannel tryLock(long position, long size, boolean shared)
- Java FileChannel tutorial with examples
- Java FileChannel write(ByteBuffer src)
- Java FileChannel write(ByteBuffer[] srcs)
By Examples
The following index lists the tutorials for FileChannel by example
titles.
PreviousNextRelated