缓冲区溢出异常的原因是什么?

2022-09-02 04:47:07

异常堆栈为

java.nio.BufferOverflowException
     at java.nio.DirectByteBuffer.put(DirectByteBuffer.java:327)
     at java.nio.ByteBuffer.put(ByteBuffer.java:813)
            mappedByteBuffer.put(bytes);

代码:

randomAccessFile = new RandomAccessFile(file, "rw");
fileChannel = randomAccessFile.getChannel();
mappedByteBuffer = fileChannel.map(MapMode.READ_WRITE, 0, file.length());

并致电mappedByteBuffer.put(bytes);

什么原因抛出BufferOverflowException
如何找到原因?mappedByteBuffer.put(bytes)


答案 1

FileChannel#map

此方法返回的映射字节缓冲区将具有零位置和大小限制和容量;

换句话说,如果 ,您应该收到 .bytes.length > file.length()BufferOverflowException

为了证明这一点,我测试了这段代码:

File f = new File("test.txt");
try (RandomAccessFile raf = new RandomAccessFile(f, "rw")) {
  FileChannel ch = raf.getChannel();
  MappedByteBuffer buf = ch.map(MapMode.READ_WRITE, 0, f.length());
  final byte[] src = new byte[10];
  System.out.println(src.length > f.length());
  buf.put(src);
}

当且仅当 打印时,将引发以下异常:true

Exception in thread "main" java.nio.BufferOverflowException
at java.nio.DirectByteBuffer.put(DirectByteBuffer.java:357)
at java.nio.ByteBuffer.put(ByteBuffer.java:832)

答案 2

据说是因为你的字节数组比缓冲区大。

放置(字节 [] 字节)

我会检查你的file.length(),并确保你的内存缓冲区实际上可以写入。


推荐