2N/A Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved. 2N/A DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 2N/A This code is free software; you can redistribute it and/or modify it 2N/A under the terms of the GNU General Public License version 2 only, as 2N/A published by the Free Software Foundation. Oracle designates this 2N/A particular file as subject to the "Classpath" exception as provided 2N/A by Oracle in the LICENSE file that accompanied this code. 2N/A This code is distributed in the hope that it will be useful, but WITHOUT 2N/A ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 2N/A FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 2N/A version 2 for more details (a copy is included in the LICENSE file that 2N/A accompanied this code). 2N/A You should have received a copy of the GNU General Public License version 2N/A 2 along with this work; if not, write to the Free Software Foundation, 2N/A Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 2N/A Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 2N/A<!
doctype html public "-//IETF//DTD HTML//EN">
2N/A<
body bgcolor="white">
2N/ADefines buffers, which are containers for data, and provides an overview of the
2N/A<
p> The central abstractions of the NIO APIs are: </
p>
2N/A <
li><
p> <
a href="#buffers"><
i>Buffers</
i></
a>, which are containers for data;
2N/A associated <
i>decoders</
i> and <
i>encoders</
i>, <
br> which translate between
2N/A bytes and Unicode characters; </
p></
li>
2N/A various types, which represent connections <
br> to entities capable of
2N/A performing I/O operations; and </
p></
li>
2N/A <
li><
p> <
i>Selectors</
i> and <
i>selection keys</
i>, which together with <
br>
2N/A <
i>selectable channels</
i> define a <
a 2N/A I/O</
a> facility. </
p></
li>
2N/A<
p> The <
tt>
java.nio</
tt> package defines the buffer classes, which are used
2N/Athroughout the NIO APIs. The charset API is defined in the {@link
2N/Aservice-provider (SPI) subpackage, the contents of which can be used to extend
2N/Athe platform's default implementations or to construct alternative
<
blockquote><
table cellspacing=1 cellpadding=0 summary="Description of the various buffers">
<
tr><
th><
p align="left">Buffers</
p></
th><
th><
p align="left">Description</
p></
th></
tr>
<
td>Position, limit, and capacity;
<
br>clear, flip, rewind, and
mark/
reset</
td></
tr>
<
td>
Get/
put, compact, views; allocate, wrap</
td></
tr>
<
td>A byte buffer mapped to a file</
td></
tr>
<
td>
Get/
put, compact; allocate, wrap</
td></
tr>
<
td> ' '</
td></
tr>
<
td> ' '</
td></
tr>
<
td> ' '</
td></
tr>
<
td> ' '</
td></
tr>
<
td> ' '</
td></
tr>
<
td>Typesafe enumeration for byte orders</
td></
tr>
<
p> A <
i>buffer</
i> is a container for a fixed amount of data of a specific
primitive type. In addition to its content a buffer has a <
i>position</
i>,
which is the index of the next element to be read or written, and a
<
i>limit</
i>, which is the index of the first element that should not be read
or written. The base {@link
java.
nio.
Buffer} class defines these properties as
well as methods for <
i>clearing</
i>, <
i>flipping</
i>, and <
i>rewinding</
i>, for
<
i>marking</
i> the current position, and for <
i>resetting</
i> the position to
<
p> There is a buffer class for each non-boolean primitive type. Each class
defines a family of <
i>get</
i> and <
i>put</
i> methods for moving data out of
and in to a buffer, methods for <
i>compacting</
i>, <
i>duplicating</
i>, and
<
i>slicing</
i> a buffer, and static methods for <
i>allocating</
i> a new buffer
as well as for <
i>wrapping</
i> an existing array into a buffer.
<
p> 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
<
li><
p> A byte buffer can be allocated as a <
a href="ByteBuffer.html#direct">
<
i>direct</
i></
a> buffer, in which case the Java virtual machine will make a
best effort to perform native I/O operations directly upon it. </
p></
li>
<
li><
p> A byte buffer can be created by {@link
file directly into memory, in which case a few additional file-related
<
li><
p> A byte buffer provides access to its content as either a heterogeneous
or homogeneous sequence of <
a href="ByteBuffer.html#bin">binary data</
i></
a>
of any non-boolean primitive type, in either big-endian or little-endian <
a<
p> Unless otherwise noted, passing a <
tt>null</
tt> argument to a constructor
or method in any class or interface in this package will cause a {@link
@author JSR-51 Expert Group