Place array of bytes in buffer Posted on: July 26, 2010 at 12:00 AM
In this tutorial you will see how to place array of bytes in buffer.
Place array of bytes in buffer
In this tutorial you will see how to place array of bytes in buffer. The put
method of CharBuffer class transfers the entire content of the given source
character array into a buffer.
Code:
import java.nio.CharBuffer;
public class CharBufferDemo { public static void main(String[] args) { char[] c = new char[] { 'a', 'b', 'c', 'd', 'e' };
CharBuffer charbuffer1 = CharBuffer.allocate(5);
charbuffer1.put(c);
System.out.println(charbuffer1.get(2));
}
}