Get default byte ordering in Java
Description
The following code shows how to get default byte ordering.
Example
//from w w w . j a v a 2 s . com
import java.nio.ByteBuffer;
import java.nio.ByteOrder;
public class Main {
public static void main(String[] argv) throws Exception {
ByteBuffer buf = ByteBuffer.allocate(10);
ByteOrder order = buf.order(); // ByteOrder.BIG_ENDIAN
}
}