91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何測試FileChannel結合MappedByteBuffer往文件中寫入數據

發布時間:2021-09-29 16:23:56 來源:億速云 閱讀:162 作者:iii 欄目:大數據

本篇內容主要講解“如何測試FileChannel結合MappedByteBuffer往文件中寫入數據”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“如何測試FileChannel結合MappedByteBuffer往文件中寫入數據”吧!

FileChannel結合ByteBuffer測試

package com;

import java.io.RandomAccessFile;
import java.nio.ByteBuffer;
import java.nio.channels.FileChannel;

/**
 * FileChannel Test
 *
 * @author Dale
 * @date 2019/10/23
 */
public class FileChannelTest{

    static ByteBuffer writeBuffer = ByteBuffer.allocate(9);
    static Integer wrotePosition = 0;
    static Integer committedPosition = 0;
    static FileChannel fileChannel = null;

    static {
        try {
            RandomAccessFile randomAccessFile = new RandomAccessFile("d://test.log", "rw");
            fileChannel = randomAccessFile.getChannel();
        }catch (Exception e){
            e.printStackTrace();
        }
    }

    public static void main(String[] args) throws Exception{

        appendData("1234");
        commit();

        appendData("567");
        commit();

        appendData("89");
        commit();

        //fileChannel.force(false);
    }

    public static void appendData(String msg) throws Exception{
        int msgLen = msg.length();

        ByteBuffer byteBuffer = writeBuffer.slice();
        byteBuffer.position(wrotePosition);

        ByteBuffer msgStoreItemMemory = ByteBuffer.allocate(msgLen);
        msgStoreItemMemory.put(msg.getBytes("UTF-8"));
        byteBuffer.put(msgStoreItemMemory.array(), 0, msgLen);
        wrotePosition = wrotePosition + msgLen;
    }

    public static void commit() throws Exception{
        ByteBuffer byteBuffer = writeBuffer.slice();
        byteBuffer.position(committedPosition);
        byteBuffer.limit(wrotePosition);
        fileChannel.position(committedPosition);
        fileChannel.write(byteBuffer);
        committedPosition = wrotePosition;
    }

}

MappedByteBuffer結合ByteBuffer測試

package com;

import java.io.RandomAccessFile;
import java.nio.ByteBuffer;
import java.nio.MappedByteBuffer;
import java.nio.channels.FileChannel;

/**
 * MappedByteBuffer Test
 *
 * @author Dale
 * @date 2019/10/23
 */
public class MappedByteBufferTest {

    static ByteBuffer writeBuffer = ByteBuffer.allocate(9);
    static Integer wrotePosition = 0;
    static Integer committedPosition = 0;
    static FileChannel fileChannel = null;
    static MappedByteBuffer mappedByteBuffer;

    static {
        try {
            RandomAccessFile randomAccessFile = new RandomAccessFile("d://test.log", "rw");
            fileChannel = randomAccessFile.getChannel();
            mappedByteBuffer = fileChannel.map(FileChannel.MapMode.READ_WRITE, 0, 9);
        }catch (Exception e){
            e.printStackTrace();
        }
    }

    public static void main(String[] args) throws Exception{

        appendData("1234");

        appendData("567");

        appendData("89");

        //mappedByteBuffer.force();
    }

    public static void appendData(String msg) throws Exception{
        int msgLen = msg.length();

        ByteBuffer byteBuffer = mappedByteBuffer.slice();
        byteBuffer.position(wrotePosition);

        ByteBuffer msgStoreItemMemory = ByteBuffer.allocate(msgLen);
        msgStoreItemMemory.put(msg.getBytes("UTF-8"));
        byteBuffer.put(msgStoreItemMemory.array(), 0, msgLen);
        wrotePosition = wrotePosition + msgLen;
    }

}

到此,相信大家對“如何測試FileChannel結合MappedByteBuffer往文件中寫入數據”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

仁怀市| 象州县| 耿马| 闽侯县| 郸城县| 五华县| 尉氏县| 镇平县| 泰来县| 北流市| 新河县| 上虞市| 鹤壁市| 苍梧县| 正宁县| 哈巴河县| 兰溪市| 团风县| 许昌县| 蒙阴县| 普格县| 慈利县| 邵阳市| 定陶县| 扎兰屯市| 交口县| 同江市| 靖宇县| 永丰县| 南京市| 白河县| 岳阳县| 巢湖市| 图片| 登封市| 安国市| 桃源县| 汉沽区| 霍山县| 临洮县| 贺兰县|