DoubleBuffer.toString() has the following syntax.
public String toString()
In the following code shows how to use DoubleBuffer.toString() method.
import java.nio.DoubleBuffer; //from w w w . j av a 2s . c o m public class Main { private static final int BSIZE = 1024; public static void main(String[] args) { DoubleBuffer bb = DoubleBuffer.allocate(BSIZE); bb.put(98765); System.out.println(bb.toString()); } }
The code above generates the following result.