Home Tutorial Java Corejava Nio Get the capacity of a buffer

 
 

Get the capacity of a buffer
Posted on: July 24, 2010 at 12:00 AM
In this tutorial you will learn about how get the capacity of a buffer

Get the capacity of a buffer

In this tutorial we will see how to get size of buffer using capacity() method.

Code:

import java.nio.CharBuffer;

public class CharBufferCapacityDemo {
  public static void main(String[] args) {
    CharBuffer charbuffer1 = CharBuffer.allocate(6);
    charbuffer1.put('B').put('U').put('F').put('F').put('E').put('R');
    System.out.println(charbuffer1.capacity());
  }
}

Output:

  6

Download this code

Related Tags for Get the capacity of a buffer:


Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.