Java NIO Programming Cookbook

About the author

JCGs (Java Code Geeks) is an independent online community focused on creating the ultimate Java to Java developers resource center; targeted at the technical architect, technical team lead (senior developer), project manager and junior developers alike.

JCGs serve the Java, SOA, Agile and Telecom communities with daily news written by domain experts, articles, tutorials, reviews, announcements, code snippets and open source projects.

You can find them online at https://www.javacodegeeks.com/

java.nio (NIO stands for non-blocking I/O) is a collection of Java programming language APIs that offer features for intensive I/O operations. It was introduced with the J2SE 1.4 release of Java by Sun Microsystems to complement an existing standard I/O.

The APIs of NIO were designed to provide access to the low-level I/O operations of modern operating systems. Although the APIs are themselves relatively high-level, the intent is to facilitate an implementation that can directly use the most efficient operations of the underlying platform. (Source)

In this book, we provide a series of tutorials on Java NIO examples that will help you kick-start your own projects.

 

Java NIO Programming Cookbook includes:

  1. Java Nio Tutorial for Beginners
  2. Java Nio SSL Example
  3. Java Nio Socket Example
  4. Java Nio Write File Example
  5. Java Nio Heartbeat Example
  6. Java Nio Large File Transfer Tutorial
  7. Java Nio Asynchronous Channels Tutorial
  8. Java Nio Echo Server Tutorial
  9. Java Nio ByteBuffer Example
JCG eBooks are professionally designed, downloadable collections of popular JCG content – articles, interviews, presentations, and research – covering the latest software development technologies, trends, and topics.
Back to top button