-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathEndians.java
More file actions
33 lines (27 loc) · 872 Bytes
/
Endians.java
File metadata and controls
33 lines (27 loc) · 872 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package io;
import java.nio.*;
import java.util.*;
/**
* RUN:
* javac io/Endians.java && java io.Endians
*
* OUTPUT:
* [0, 97, 0, 98, 0, 99, 0, 100, 0, 101, 0, 102]
* [0, 97, 0, 98, 0, 99, 0, 100, 0, 101, 0, 102]
* [97, 0, 98, 0, 99, 0, 100, 0, 101, 0, 102, 0]
*/
public class Endians {
public static void main(String[] args) {
ByteBuffer bb = ByteBuffer.wrap(new byte[12]);
bb.asCharBuffer().put("abcdef");
System.out.println(Arrays.toString(bb.array()));
bb.rewind();
bb.order(ByteOrder.BIG_ENDIAN);
bb.asCharBuffer().put("abcdef");
System.out.println(Arrays.toString(bb.array()));
bb.rewind();
bb.order(ByteOrder.LITTLE_ENDIAN);
bb.asCharBuffer().put("abcdef");
System.out.println(Arrays.toString(bb.array()));
}
}