Tutorial by Topics: bytebuffer

The ByteBuffer class was introduced in java 1.4 to ease working on binary data. It's especially suited to use with primitive type data. It allows the creation, but also subsequent manipulation of a byte[]s on a higher abstraction level byte[] arr = new byte[1000]; ByteBuffer buffer = ByteBuff...

Page 1 of 1