Top Description Classes
module java.base

Package java.nio


Defines buffers, which are containers for data, and provides an overview of the other NIO packages.

The central abstractions of the NIO APIs are:

The java.nio package defines the buffer classes, which are used throughout the NIO APIs. The charset API is defined in the java.nio.charset package, the channel and selector APIs in the java.nio.channels package, and the files and path APIs in the java.nio.file package. Each of these subpackages has its own service-provider interface (SPI) subpackage, the contents of which can be used to extend the platform's default implementations or to construct alternative implementations.

Description of the various buffers
Buffers Description
java.nio.Buffer Position, limit, and capacity; clear, flip, rewind, and mark/reset
java.nio.ByteBuffer Get/put, compact, views; allocate, wrap
java.nio.MappedByteBuffer A byte buffer mapped to a file
java.nio.CharBuffer Get/put, compact; allocate, wrap
java.nio.DoubleBuffer Get/put, compact; allocate, wrap
java.nio.FloatBuffer Get/put, compact; allocate, wrap
java.nio.IntBuffer Get/put, compact; allocate, wrap
java.nio.LongBuffer Get/put, compact; allocate, wrap
java.nio.ShortBuffer Get/put, compact; allocate, wrap
java.nio.ByteOrder Typesafe enumeration for byte orders

A buffer is a container for a fixed amount of data of a specific primitive type. In addition to its content a buffer has a position, which is the index of the next element to be read or written, and a limit, which is the index of the first element that should not be read or written. The base java.nio.Buffer class defines these properties as well as methods for clearing, flipping, and rewinding, for marking the current position, and for resetting the position to the previous mark.

There is a buffer class for each non-boolean primitive type. Each class defines a family of get and put methods for moving data out of and in to a buffer, methods for compacting, duplicating, and slicing a buffer, and static methods for allocating a new buffer as well as for wrapping an existing array into a buffer.

Byte buffers are distinguished in that they can be used as the sources and targets of I/O operations. They also support several features not found in the other buffer classes:

Unless otherwise noted, passing a null argument to a constructor or method in any class or interface in this package will cause a NullPointerException to be thrown.

Authors
Mark Reinhold, JSR-51 Expert Group
Since
1.4

Class Summary

Modifier and TypeClass and Description
pack-priv class
Bits

Access to bits, native and otherwise.

public abstract class
Buffer

A container for data of a specific primitive type.

pack-priv class
BufferMismatch

Mismatch methods for buffers

public class
BufferOverflowException

Unchecked exception thrown when a relative put operation reaches the target buffer's limit.

public class
BufferUnderflowException

Unchecked exception thrown when a relative get operation reaches the source buffer's limit.

public abstract class
ByteBuffer

A byte buffer.

pack-priv class
pack-priv class
pack-priv class
pack-priv class
pack-priv class
pack-priv class
pack-priv class
pack-priv class
pack-priv class
pack-priv class
pack-priv class
pack-priv class
pack-priv class
pack-priv class
pack-priv class
pack-priv class
pack-priv class
pack-priv class
pack-priv class
pack-priv class
pack-priv class
pack-priv class
pack-priv class
pack-priv class
public class
ByteOrder

A typesafe enumeration for byte orders.

public abstract class
CharBuffer

A char buffer.

pack-priv class
CharBufferSpliterator

A Spliterator.OfInt for sources that traverse and split elements maintained in a CharBuffer.

pack-priv class
pack-priv class
pack-priv class
pack-priv class
pack-priv class
pack-priv class
pack-priv class
pack-priv class
pack-priv class
pack-priv class
pack-priv class
pack-priv class
pack-priv class
pack-priv class
pack-priv class
pack-priv class
pack-priv class
pack-priv class
pack-priv class
pack-priv class
pack-priv class
pack-priv class
pack-priv class
pack-priv class
pack-priv class
pack-priv class
public abstract class
DoubleBuffer

A double buffer.

public abstract class
FloatBuffer

A float buffer.

pack-priv class
HeapByteBuffer

A read/write HeapByteBuffer.

pack-priv class
HeapByteBufferR

A read-only HeapByteBuffer.

pack-priv class
HeapCharBuffer

A read/write HeapCharBuffer.

pack-priv class
HeapCharBufferR

A read-only HeapCharBuffer.

pack-priv class
HeapDoubleBuffer

A read/write HeapDoubleBuffer.

pack-priv class
HeapDoubleBufferR

A read-only HeapDoubleBuffer.

pack-priv class
HeapFloatBuffer

A read/write HeapFloatBuffer.

pack-priv class
HeapFloatBufferR

A read-only HeapFloatBuffer.

pack-priv class
HeapIntBuffer

A read/write HeapIntBuffer.

pack-priv class
HeapIntBufferR

A read-only HeapIntBuffer.

pack-priv class
HeapLongBuffer

A read/write HeapLongBuffer.

pack-priv class
HeapLongBufferR

A read-only HeapLongBuffer.

pack-priv class
HeapShortBuffer

A read/write HeapShortBuffer.

pack-priv class
HeapShortBufferR

A read-only HeapShortBuffer.

public abstract class
IntBuffer

An int buffer.

public class
InvalidMarkException

Unchecked exception thrown when an attempt is made to reset a buffer when its mark is not defined.

public abstract class
LongBuffer

A long buffer.

public abstract class
MappedByteBuffer

A direct byte buffer whose content is a memory-mapped region of a file.

pack-priv class
public class
ReadOnlyBufferException

Unchecked exception thrown when a content-mutation method such as put or compact is invoked upon a read-only buffer.

public abstract class
ShortBuffer

A short buffer.

pack-priv class