|
|||||||||
类 java.nio.channels.FileChannel.MapMode
的使用
使用 FileChannel.MapMode 的软件包 | |
---|---|
java.nio.channels | 定义了各种通道,这些通道表示到能够执行 I/O 操作的实体(如文件和套接字)的连接;定义了用于多路复用的、非阻塞 I/O 操作的选择器。 |
java.nio.channels 中 FileChannel.MapMode 的使用 |
---|
声明为 FileChannel.MapMode 的 java.nio.channels 中的字段 | |
---|---|
static FileChannel.MapMode |
FileChannel.MapMode.PRIVATE 专用(写入时拷贝)映射模式。 |
static FileChannel.MapMode |
FileChannel.MapMode.READ_ONLY 只读映射模式。 |
static FileChannel.MapMode |
FileChannel.MapMode.READ_WRITE 读取/写入映射模式。 |
参数类型为 FileChannel.MapMode 的 java.nio.channels 中的方法 | |
---|---|
abstract MappedByteBuffer |
FileChannel.map(FileChannel.MapMode mode, long position, long size) 将此通道的文件区域直接映射到内存中。 |
所有类
|
|||||||||