ByteBuffer.order() has the following syntax.
public final ByteOrder order()
In the following code shows how to use ByteBuffer.order() method.
//from ww w.j a va 2s . c o 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.