Java IO Tutorial - Java CharBuffer.wrap(CharSequence csq, int start, int end)








Syntax

CharBuffer.wrap(CharSequence csq, int start, int end) has the following syntax.

public static CharBuffer wrap(CharSequence csq,  int start,  int end)

Example

In the following code shows how to use CharBuffer.wrap(CharSequence csq, int start, int end) method.

//from   w ww .  j  a  va  2 s. co  m
import java.nio.CharBuffer;

public class Main {
  public static void main(String[] args) {
    CharBuffer cb1 = CharBuffer.wrap("java2s.com",0,2);
    System.out.println(cb1.toString());
   

  }
}

The code above generates the following result.