Java ByteBuffer.put(ByteBuffer src)
Syntax
ByteBuffer.put(ByteBuffer src) has the following syntax.
public ByteBuffer put(ByteBuffer src)
Example
In the following code shows how to use ByteBuffer.put(ByteBuffer src) method.
//from w ww . j a va 2 s .co m
import java.nio.ByteBuffer;
import java.util.Arrays;
public class Main {
public static void main(String[] argv) throws Exception {
ByteBuffer bbuf = ByteBuffer.allocate(10);
int capacity = bbuf.capacity(); // 10
System.out.println(capacity);
bbuf.put("java2s.com".getBytes(),0,2);
ByteBuffer bbuf1 = ByteBuffer.allocate(10);
bbuf1.put(bbuf);
System.out.println(Arrays.toString(bbuf1.array()));
}
}
The code above generates the following result.