gpt4 book ai didi

java - 首先 .put() 出现 BufferOverFlowException

转载 作者:行者123 更新时间:2023-11-30 03:35:10 26 4
gpt4 key购买 nike

由于之前没有翻转缓冲区,我遇到了问题,但现在我无法让缓冲区使用 .put() 或 .putInt() 添加任何内容,它在第一次尝试时不断抛出 BufferOverflowException:

buffer.put((byte) c.getRed());

相关代码如下:

BufferedImage image = loadImage(".\\res\\" + fileName);
int[] pixels = new int[image.getWidth() * image.getHeight()];
image.getRGB(0, 0, image.getWidth(), image.getHeight(), pixels, 0, image.getWidth());

ByteBuffer buffer = BufferUtils.createByteBuffer(image.getWidth() * image.getHeight() * 4);
buffer.flip();
Color c;

for (int y = 0; y < image.getHeight(); y++) {
for (int x = 0; x < image.getWidth(); x++) {
c = new Color(image.getRGB(x, y));
buffer.put((byte) c.getRed()); // Red component
buffer.put((byte) c.getGreen()); // Green component
buffer.put((byte) c.getBlue()); // Blue component
buffer.put((byte) c.getAlpha()); // Alpha component. Only for RGBA
}
}

最佳答案

您对 buffer.flip() 的调用位置错误。来自 documentation :

Flips this buffer. The limit is set to the current position and then the position is set to zero.

其中限制定义为:

A buffer's limit is the index of the first element that should not be read or written. A buffer's limit is never negative and is never greater than its capacity.

由于您在分配缓冲区后立即调用 flip(),其中当前位置为 0,因此 flip() 调用将限制设置为 0。这意味着在索引 0 处或其之后不能写入任何内容。这反过来意味着什么都不能写。

要解决此问题,您需要将 buffer.flip() 调用移至之后使用 buffer.put() 用值填充缓冲区的循环.

原始代码缺失的要点是,在向缓冲区写入数据后,需要将缓冲区位置设置为 0。否则, future 的操作将从当前位置开始读取,即完成所有 buffer.put() 操作后缓冲区的末尾。

在用数据填充缓冲区后,有多种方法可以将位置重置为 0。其中任何一项都可以完成这项工作:

buffer.flip();
buffer.position(0);
buffer.rewind();

关于java - 首先 .put() 出现 BufferOverFlowException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28162133/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com