Java ByteBuffer.order()
Syntax
ByteBuffer.order() has the following syntax.
public final ByteOrder order()
Example
In the following code shows how to use ByteBuffer.order() method.
/*from w ww . ja v a 2 s . co m*/
import java.nio.ByteBuffer;
import java.nio.ByteOrder;
public class Main {
public static void main(String[] argv) throws Exception {
ByteBuffer bbuf = ByteBuffer.allocate(10);
int capacity = bbuf.capacity(); // 10
System.out.println(capacity);
bbuf.putShort(2,(short)123);
ByteOrder byteOrder = bbuf.order();
System.out.println(byteOrder);
}
}
The code above generates the following result.