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
  }
}




















Home »
  Java Tutorial »
    Development »




Java Algorithms
Java Clipboard
Java Compiler
Java Desktop
Java Virtual Machine
Java Math
OS
Random
Java Robot
Java RuntimeMXBean
Java Timer
Java UUID
Java Internationalization