我正在考虑使用 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)失败了。有什么建议么?