0

我正在考虑使用 MappedByteBuffer 将一些数据存储/加载到文件中。假设我有一个 long 类型的字段 A 和一个字符串的字段 B 在序列化时如下所示:B(字符串)

现在我想写和读它。这是一段示例代码:

RandomAccessFile file = new RandomAccessFile(dataPath.toString(), "rw");
    MappedByteBuffer mbb = file.getChannel().map(FileChannel.MapMode
            .READ_WRITE, 0, 256);
    long num = 500;
    mbb.putLong(0, num); // (1) first write the long value at beginning
    String str = "Hello World!";
    byte[] input = str.getBytes();
    //then write a string
    mbb.put(input, 8, input.length); // (2) IndexOutOfBoundsException

所以以后我可以通过调用mbb.getLong(0)
mbb.get(outputArray,8,outputArray.length)

但现在我在地方(2)失败了。有什么建议么?

4

1 回答 1

1

尝试

mbb.put(destArray, 0, sourceArray.length)

我认为您不想以 8 字节偏移量开始写入,否则您将尝试在数组的长度上写入 8 个字节。

于 2017-07-25T21:46:13.430 回答