Transfer the content of a float buffer into another float buffer.


 

Transfer the content of a float buffer into another float buffer.

In this tutorial you will see how to transfer the content of a float buffer into another float buffer.

In this tutorial you will see how to transfer the content of a float buffer into another float buffer.

Transfer the content of a float buffer into another float buffer.

 In this tutorial, we will see how to transfer the content of a float buffer into another float buffer.

FloatBufferAPI:

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

Return type Method Description
static FloatBuffer allocate(int capacity)  The allocate(..)method allocate a new byte buffer.
 FloatBuffer put(FloatBuffer buffer) The put(..)method transfer the content of a float buffer into another float buffer.

code

import java.nio.*;
import java.nio.FloatBuffer;
public class ContentTransfer {
public static void main(String[] args){
FloatBuffer floatBuf = FloatBuffer.allocate(1024);
    floatBuf.put(12.061f);
    floatBuf.put(13.072f);
    floatBuf.put(14.083f);
    floatBuf.flip();
FloatBuffer floatBuf1 = FloatBuffer.allocate(1024);
    floatBuf1.put(floatBuf);
    floatBuf1.flip();
    System.out.println("Content in new buffer.");
    for (int i = 0; i< floatBuf1.limit(); i++) {
      System.out.println(floatBuf1.get());
    }
  }
}

Output

C:\>java ContentTransfer
Content in new buffer.
12.061
13.072
14.083

Download this code

Ads