当前位置 : 主页 > 手机开发 > 其它 >

内存映射文件MappedByteBuffer

来源:互联网 收集:自由互联 发布时间:2021-06-19
上一篇讲到的DirectByteBuffer继承自MappedByteBuffer MappedByteBuffer的定义: A direct byte buffer whose content is a memory-mapped region of a file. 直接缓存,内容是一个内存映射文件。 创建测试类 public clas

上一篇讲到的DirectByteBuffer继承自MappedByteBuffer

MappedByteBuffer的定义:

A direct byte buffer whose content is a memory-mapped region of a file.

直接缓存,内容是一个内存映射文件。

创建测试类

public class NioTest9 {
    public static void main(String[] args) throws  Exception {
        RandomAccessFile randomAccessFile = new RandomAccessFile("NioTest9.txt","rw");
        FileChannel fileChannel =  randomAccessFile.getChannel();
        MappedByteBuffer mappedByteBuffer = fileChannel.map(FileChannel.MapMode.READ_WRITE, 0,5);
        mappedByteBuffer.put(0,(byte)‘a‘);
        mappedByteBuffer.put(3,(byte)‘b‘);

        randomAccessFile.close();
    }
}

 创建NioTest9.tex文件

 

 运行程序,用记事本打开

操作的是堆外内存,堆外内存写入到文件由操作系统控制。

网友评论