Showing posts with label FileChannel. Show all posts
Writing and reading File using FileChannel
April 21, 2020
FileChannel
NIO
FileChannel is available as a part of Java NIO (New IO). Java NIO (New IO) is an alternative to the standard Java IO API's. Java NIO offers a different way of working with IO than the standard IO API's. File channels are safe for use by multiple concurrent threads. This article demonstrate with working example of how to write and read file using FileChannel.
Table of Content
Advantages...