Package java.nio
See: Description
-
Class Summary Class Description Buffer A container for data of a specific primitive type.ByteBuffer A byte buffer.ByteOrder A typesafe enumeration for byte orders.CharBuffer A char 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 Exception Description 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.
Package java.nio Description
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; andSelectors 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.
Buffer
Position, limit, and capacity;
clear, flip, rewind, and mark/reset
ByteBuffer
Get/put, compact, views; allocate, wrap
MappedByteBuffer
A byte buffer mapped to a file
CharBuffer
Get/put, compact; allocate, wrap
DoubleBuffer
' '
FloatBuffer
' '
IntBuffer
' '
LongBuffer
' '
ShortBuffer
' ' ByteOrder
Typesafe 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.
- Since:
- 1.4
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 11/06/2005 gemaakt, de laatste keer de 04/03/2020 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/java-api-rf-java/nio/package-summary.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.
Referenties
Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur Deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.