JavaTM 2 Platform
Standard Ed. 6

类 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)
          将此通道的文件区域直接映射到内存中。
 


JavaTM 2 Platform
Standard Ed. 6

提交错误或意见

版权所有 2008 Sun Microsystems, Inc. 保留所有权利。请遵守GNU General Public License, version 2 only