June 2004
Intermediate to advanced
848 pages
21h 28m
English
JDK 1.4 introduced a package called java.nio. “Nio” stands for “new I/O” (so the JDK 1.5 I/O improvements must be “even newer than new I/O”). The java.nio package and subpackages support four important features not previously well-provisioned in Java:
A non-blocking I/O facility for writing scalable servers
A file interface that supports locks and memory mapping
A pattern-matching facility based on Perl-style regular expressions
Character-set encoders and decoders
Instead of building these on top of streams or file descriptors, these features are implemented using two new concepts: buffers and channels.
The right way ...
Read now
Unlock full access