-1

バイト配列があり、MappedByteBuffer に変換する必要があります。

しかし、MappedByteBuffer を作成しようとすると、エラーが発生します。

error: cannot find symbol method MappedByteBuffer(int,int,int,int,byte[],int)

MappedByteBuffer.java

package java.nio;

import java.io.FileDescriptor;
import sun.misc.Unsafe;

public abstract class MappedByteBuffer
    extends ByteBuffer
{

   ...

// Android-added: Additional constructor for use by Android's DirectByteBuffer.
    MappedByteBuffer(int mark, int pos, int lim, int cap, byte[] buf, int offset) {
        super(mark, pos, lim, cap, buf, offset);  // <- when I hover mouse here, ByteBuffer() in ByteBuffer cannot be applied to message appears with a red underline.
        this.fd = null;
    }

   ...

}

ByteBuffer.java

package java.nio;
import libcore.io.Memory;
import dalvik.annotation.codegen.CovariantReturnType;

public abstract class ByteBuffer
    extends Buffer
    implements Comparable<ByteBuffer>
{

    // These fields are declared here rather than in Heap-X-Buffer in order to
    // reduce the number of virtual method invocations needed to access these
    // values, which is especially costly when coding small buffers.
    //
    final byte[] hb;                  // Non-null only for heap buffers
    final int offset;
    boolean isReadOnly;                 // Valid only for heap buffers

    // Creates a new buffer with the given mark, position, limit, capacity,
    // backing array, and array offset
    //
    ByteBuffer(int mark, int pos, int lim, int cap,   // package-private
                 byte[] hb, int offset)
    {
        // Android-added: elementSizeShift parameter (log2 of element size).
        super(mark, pos, lim, cap, 0 /* elementSizeShift */);
        this.hb = hb;
        this.offset = offset;
    }

    ...

}

私が奇妙だと思うのはextends ByteBuffer、MappedByteBuffer.java の定義に移動すると、ByteBuffer.java ではなく、ByteBuffer.annotated.java が表示されることです。

ByteBuffer.annotated.java


// -- This file was mechanically generated: Do not edit! -- //


package java.nio;


@SuppressWarnings({"unchecked", "deprecation", "all"})
public abstract class ByteBuffer extends java.nio.Buffer implements java.lang.Comparable<java.nio.ByteBuffer> {

ByteBuffer(int mark, int pos, int lim, int cap) { super(0, 0, 0, 0, 0); throw new RuntimeException("Stub!"); }

{classname}.annotated.java が何をするかわからないのでエラーではないかもしれませんが、変だと思ったので貼り付けました。

では、バイト配列から MappedByteBuffer を作成するにはどうすればよいでしょうか? コンストラクターは 1 つしかありませんが、壊れています。

4

1 に答える 1

1

コンストラクターは 1 つしかありませんが、壊れています

そのコンストラクターは公開されていない (パッケージ プライベートである) ため、呼び出すことはできません。

では、バイト配列から MappedByteBuffer を作成するにはどうすればよいでしょうか?

最初にファイルに書き込まないとできません。ドキュメントから:

コンテンツがファイルのメモリ マップ領域であるダイレクト バイト バッファ。

バイト配列からMappedByteBufferだけでなく、具体的に を作成する必要がある場合は、それをファイルに書き込んで を使​​用する必要があります。だけが必要な場合は、使用できますByteBufferFileChannel.mapByteBufferByteBuffer.wrap

于 2020-02-26T03:00:37.400 に答える