Java ByteBuffer.array()
Syntax
ByteBuffer.array() has the following syntax.
public final byte[] array()
Example
In the following code shows how to use ByteBuffer.array() method.
/* w ww . ja v a2 s. co m*/
import java.nio.ByteBuffer;
import java.util.Arrays;
public class Main {
public static void main(String[] argv) throws Exception {
byte[] bytes = new byte[10];
ByteBuffer buf = ByteBuffer.wrap(bytes);
System.out.println(Arrays.toString(buf.array()));
System.out.println(buf.toString());
}
}
The code above generates the following result.