1. ホーム
  2. java

[解決済み] バッファアンダーフロー例外 Java

2022-02-11 08:59:12

質問

ファイルに値を書き込んでいます。

値は正しく書き込まれています。別のアプリケーションでは、例外なくそのファイルを読むことができます。

しかし、私の新しいアプリケーションでは Bufferunderflowexception を読み込もうとすると

は、その bufferunderflowexception は、以下を参照しています。

Double X1 = mappedByteBufferOut.getDouble(); //8 byte (double)

これは、ファイルを読み込むための私のコードです。

 @Override
    public void paintComponent(Graphics g) {

    RandomAccessFile randomAccessFile = null;
    MappedByteBuffer mappedByteBufferOut = null;
    FileChannel fileChannel = null;

    try {
        super.paintComponent(g);

        File file = new File("/home/user/Desktop/File");

        randomAccessFile = new RandomAccessFile(file, "r");

        fileChannel = randomAccessFile.getChannel();

        mappedByteBufferOut = fileChannel.map(FileChannel.MapMode.READ_ONLY, 0, randomAccessFile.length());

        while (mappedByteBufferOut.hasRemaining()) {
          
            Double X1 = mappedByteBufferOut.getDouble(); //8 byte (double)
            Double Y1 = mappedByteBufferOut.getDouble();
            Double X2 = mappedByteBufferOut.getDouble();
            Double Y2 = mappedByteBufferOut.getDouble();
            int colorRGB = mappedByteBufferOut.getInt(); //4 byte (int)
            Color c = new Color(colorRGB);

            Edge edge = new Edge(X1, Y1, X2, Y2, c);

            listEdges.add(edge);

        }
        repaint();

        for (Edge ed : listEdges) {
            g.setColor(ed.color);
            ed = KochFrame.edgeAfterZoomAndDrag(ed);
            g.drawLine((int) ed.X1, (int) ed.Y1, (int) ed.X2, (int) ed.Y2);
        }
    }
    catch (IOException ex)
    {
        System.out.println(ex.getMessage());
    }
    finally
    {
        try
        {
            mappedByteBufferOut.force();
            fileChannel.close();
            randomAccessFile.close();
            listEdges.clear();
        } catch (IOException ex)
        {
            System.out.println(ex.getMessage());
        }
    }
}

解決方法は?

からの ドキュメント java.nio.ByteBufferを使用しています。

スローします。 BufferUnderflowException - このバッファの残りが8バイト未満であった場合

これで、このExceptionがどこから来ているのか、かなり明確になったのではないでしょうか。この問題を解決するには、ByteBufferにダブル(8バイト)を読み込むのに十分なデータ量があるかどうかを確認する必要があります。 remaining() ではなく hasRemaining() というように、1バイトしかチェックしない。

while (mappedByteBufferOut.remaining() >= 36) {//36 = 4 * 8(double) + 1 * 4(int)