Home Tutorial Java Corejava Nio How to allocate a short buffer in java.

 
 

How to allocate a short buffer in java.
Posted on: August 11, 2010 at 12:00 AM
In this tutorial, you will see how to allocate a short buffer in java.

How to allocate a short buffer in java.

 In this tutorial, we will see how to allocate a new short buffer.

ShortBuffer API:

The java.nio.ShortBuffer class extends java.nio.Buffer class. It provides the following methods:

Return type Method Description
static ShortBuffer allocate( int capacity)  The allocate() method allocate a short buffer of given capacity. 

Buffer API:

The java.nio.Buffer class extends java.lang.Objact class. It provides the following methods:

Return type Method Description
int limit() The limit() method returns the limit of short buffer.
int position() The position() method returns the position of short buffer.
final int capacity() The capacity() method returns the capacity of associated short buffer.

Code

import java.nio.*;
import java.nio.ShortBuffer;
public class AllocateShort  {
  public static final int capacity=256;
  public static void main(String[] arg) {      
ShortBuffer shortBuff = ShortBuffer.allocate(capacity);
    shortBuff.put((short565);
    shortBuff.flip();
    System.out.println("Limit of short buffer : "
                                  
+ shortBuff.limit());
    System.out.println("capacity of short buffer : " 
                              + shortBuff.capacity());
    while (shortBuff.hasRemaining()) 
      {
      System.out.println("Content in shortbuffer : " 
                                 
+ shortBuff.get());
    }
  }
}

Output

C:\>java AllocateShort
Limit of short buffer : 1
capacity of short buffer : 256
Content in shortbuffer :  565

Download this code

Related Tags for How to allocate a short buffer in java.:


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.