Wraps a character array into a buffer


 

Wraps a character array into a buffer

In this tutorial you will see how to wraps a character array into a buffer.

In this tutorial you will see how to wraps a character array into a buffer.

Wraps a character array into a buffer

In this tutorial you will see how to wraps a character array into a buffer. The public static CharBuffer wrap(char[] array) method allow character array to wrap it into a buffer.

Code:

import java.nio.CharBuffer;

public class CharBufferDemo1 {
  public static void main(String[] args) {
    char[] ch = new char[] { 'a''b''c''d''e' };
    CharBuffer charbuffer1 = CharBuffer.wrap(ch);
    System.out.println(charbuffer1.get(1));
  }
}

Output:

  b

Download this code

Ads