JVM endianness
JVM endianness StackOverflow topic
to summarize
- JVM class file is big-endian;
- JVM multi-byte instructions are big-endian;
java.nio.ByteOrder.nativeOrder()
gives you endianness of underlying architecture.
JVM endianness StackOverflow topic
to summarize
java.nio.ByteOrder.nativeOrder()
gives you endianness of underlying architecture.