See:
Description
| Class Summary | |
|---|---|
| Buffer | A container for data of a specific primitive type. |
| ByteBuffer | A byte buffer. |
| ByteOrder | A typesafe enumeration for byte orders. |
| CharBuffer | A character buffer. |
| DoubleBuffer | A double buffer. |
| FloatBuffer | A float buffer. |
| IntBuffer | An int buffer. |
| LongBuffer | A long buffer. |
| MappedByteBuffer | A direct byte buffer whose content is a memory-mapped region of a file. |
| ShortBuffer | A short buffer. |
| Exception Summary | |
|---|---|
| BufferOverflowException | Unchecked exception thrown when a relative put operation reaches the target buffer's limit. |
| BufferUnderflowException | Unchecked exception thrown when a relative get operation reaches the source buffer's limit. |
| InvalidMarkException | Unchecked exception thrown when an attempt is made to reset a buffer when its mark is not defined. |
| ReadOnlyBufferException | Unchecked exception thrown when a content-mutation method such as put or compact is invoked upon a read-only buffer. |
Defines buffers, which are containers for data, and provides an overview of the other NIO packages.
The central abstractions of the NIO APIs are:
Buffers, which are containers for data;
Charsets and their
associated decoders and encoders,
which translate between
bytes and Unicode characters;
Channels of
various types, which represent connections
to entities capable of
performing I/O operations; and
Selectors and selection keys, which together with
selectable channels define a multiplexed, non-blocking
I/O facility.
The java.nio package defines the buffer classes, which are used
throughout the NIO APIs. The charset API is defined in the Buffers Description 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 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:
A byte buffer can be allocated as a
direct buffer, in which case the Java virtual machine will make a
best effort to perform native I/O operations directly upon it. A byte buffer can be created by A byte buffer provides access to its content as either a heterogeneous
or homogeneous sequence of binary data
of any non-boolean primitive type, in either big-endian or little-endian byte order. Unless otherwise noted, passing a null argument to a constructor
or method in any class or interface in this package will cause a
java.nio.charset package, and the channel and selector APIs are defined in the
java.nio.channels package. Each of these subpackages has its own
service-provider (SPI) subpackage, the contents of which can be used to extend
the platform's default implementations or to construct alternative
implementations.
BufferPosition, limit, and capacity;
clear, flip, rewind, and mark/reset
ByteBufferGet/put, compact, views; allocate, wrap
MappedByteBuffer A byte buffer mapped to a file
CharBufferGet/put, compact; allocate, wrap
DoubleBuffer ' '
FloatBuffer ' '
IntBuffer ' '
LongBuffer ' '
ShortBuffer ' ' ByteOrderTypesafe enumeration for byte orders 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.
mapping a region of a
file directly into memory, in which case a few additional file-related
operations defined in the MappedByteBuffer class are
available. NullPointerException to be thrown.
Ces informations proviennent du site de http://java.sun.com
Le contenu de cette page provient du site de Sun, et est généré depuis un cache sur l'infobrol après certains traitements automatisés. La présentation peut donc différer du document original, mais le contenu aussi. Vous pouvez utiliser ce bouton pour afficher la page originale du site de Sun :
Maintenir les pages en cache sur différents sites peut offrir plus de disponibilité.
Chaque page est indexée dans la base de donnée, ce qui permet de retrouver facilement les informations, au moyen des sommaires, du moteur de recherche interne, etc.
Des facilités sont mises en place pour que les membres de l'infobrol puissent effectuer des traductions en français des différents documents. Ceci devrait permettre aux débutants en programmation Java de consulter les API en français s'ils maîtrisent moins bien la langue de Shakespeare. Dans le cas où une traduction a été soumise, elle est disponible au moyen d'un lien en bas de page. Si la traduction a été validée, la page s'affiche par défaut en français, et un lien en bas de page permet d'atteindre la version en anglais.
Le code sur l'infobrol est automatiquement coloré selon la syntaxe, et les différents mots clés sont transformés en liens pour accéder rapidement aux informations.
Vous avez la possibilité de partager vos expériences en proposant vos propres extraits de code en utilisant le bouton "ajouter un commentaire" en bas de page. Si vous visitez simplement l'infobrol, vous avez déjà accès à cette fonction, mais si vous étes membre du brol, vous pouvez en plus utiliser des boutons supplémentaires de mise en forme, dont la coloration automatique de vos extraits de codes.
Vous pouvez modifier vos préférences dans votre profil pour ne plus afficher les interactions avec les réseaux sociaux sur ces pages.
6 mots clés dont 0 définis manuellement (plus d'information...).
Avertissement
Cette page ne possède pas encore de mots clés manuels, ceci est donc un exemple automatique (les niveaux de pertinence sont fictifs, mais les liens sont valables). Pour tester le nuage avec une page qui contient des mots définis manuellement, vous pouvez cliquer ici.Vous pouvez modifier vos préférences dans votre profil pour ne plus afficher le nuage de mots clés.
Recherche (afficher)
Utilisateur (masquer)
Navigation (masquer)
Apparence (afficher)
Stats (afficher)
Citation (masquer)