Home Tutorial Java Corejava Nio Order bytes from least significant to most significant.

 
 

Order bytes from least significant to most significant.
Posted on: July 24, 2010 at 12:00 AM
In this tutorial you will learn about how to order bytes from least significant to most significant.

Order bytes from least significant to most significant.

In this tutorial we will discuss on how to use the ByteOrder class for ordering bytes from least significant to a most significant.

Code:

import java.nio.ByteBuffer;
import java.nio.ByteOrder;

public class ByOrderDemo {

  public static void main(String[] args) {
    ByteBuffer byteBuf = ByteBuffer.wrap(new byte[6]);
    byteBuf.asCharBuffer().put("abc");
    System.out.println(toString(byteBuf.array()));
    byteBuf.rewind();

    byteBuf.order(ByteOrder.LITTLE_ENDIAN);
    byteBuf.asCharBuffer().put("abc");
    System.out.println(toString(byteBuf.array()));
  }

  static String toString(byte[] a) {
    StringBuffer strbuf = new StringBuffer();
    for (int i = 0; i < a.length; i++) {
      strbuf.append(a[i]);
      if (i < a.length - 1)
        strbuf.append(", ");
    }
    return strbuf.toString();
  }
}

Output:

  0, 97, 0, 98, 0, 99
  97, 0, 98, 0, 99, 0

Download this code

Related Tags for Order bytes from least significant to most significant.:


Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.