所有类


类 java.nio.channels.FileChannel.MapMode
的使用

使用 FileChannel.MapMode 的软件包
java.nio.channels 定义了各种通道,这些通道表示到能够执行 I/O 操作的实体(如文件和套接字)的连接;定义了用于多路复用的、非阻塞 I/O 操作的选择器。 
 

java.nio.channelsFileChannel.MapMode 的使用
 

声明为 FileChannel.MapModejava.nio.channels 中的字段
static FileChannel.MapMode FileChannel.MapMode.PRIVATE
          专用(写入时拷贝)映射模式。
static FileChannel.MapMode FileChannel.MapMode.READ_ONLY
          只读映射模式。
static FileChannel.MapMode FileChannel.MapMode.READ_WRITE
          读取/写入映射模式。
 

参数类型为 FileChannel.MapModejava.nio.channels 中的方法
abstract  MappedByteBuffer FileChannel.map(FileChannel.MapMode mode, long position, long size)
          将此通道的文件区域直接映射到内存中。
 


所有类

微信小程序

微信扫一扫体验

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部