Java NIO FileChannel 是和文件连接的通道。使用文件通道能够在文件中读写数据。Java NIO FileChannel类是用来替代Java IO API标准文件读写的。 FileChannel不能被设置为费阻塞模式,它使用以阻塞模式运行。
在使用FileChannel之前必须先打开它。不能直接打开FileChannel,需要通过InputStream,OutputStream或者RandomAccessFile获得一个FileChannel。下面是一个用RandomAccessFIle获得FileChannel的例子:
RandomAccessFile aFile = new RandomAccessFile("./data/nio-data.txt", "rw");
FileChannel inChannel = aFile.getChannel();
调用read()方法从FileChannel中读取数据,例如:
ByteBuffer buf = ByteBuffer.allocate(48);
int bytesRead = inChannel.read(buf);
先分配一个Buffer,数据从FileChannel读到Buffer中。 然后调用FileChannel.read()方法,这个方法把数据从FileChannel读到Buffer中。read()方法返回的int表示向Buffer中写入了多少字节。如果返回-1,表明到达了文件的结尾。
调用FileChannel.write()方法往文件中写入数据。这需要一个Buffer作为参数,例如:
String newData = "New String to write to file..." + System.currentTimeMillis();
ByteBuffer buf = ByteBuffer.allocate(48);
buf.clear();
buf.put(newData.getBytes());
buf.flip();
while(buf.hasRemaining()) {
channel.write(buf);
}
注意FileChannel.write()方法在一个while循环中调用。write()方法不保证有多少数据写入FileChannel。因此我们需要重复调用write方法,直到Buffer中没有byte需要写入为止。
FileChannel用完之后必须关闭,例如:
channel.close();
往FIleChannel中读写都是在特定位置进行。调用position()方法会获得当前的位置。 通过position(long pos)能设置位置。 两个例子:
long pos channel.position();
channel.position(pos + 123);
如果把位置设置到了文件末尾的后面,然后从文件中读,会得到-1——文件结尾的标记。
如果把位置设置到了文件末尾的后面,然后往文件中写,文件将扩展到该位置然后写入,这样会导致“文件空洞”,磁盘上物理文件写入的数据间有间隙。
FileChannel的size()方法返回通道连接到的文件的大小,例如:
long fileSize = channel.size();
调用FileChannel.truncate()方法能够吧文件截取到指定长度。例如:
channel.truncate(1024);
例子将文件截取到1024字节。
FileChannel.force()方法将通道中未写入的数据写到硬盘上。处于性能考虑,操作系统可能将数据保存在缓存中,所以不保证数据真的被写到硬盘上了,除非调用了force()方法。 force()方法以一个布尔值作为参数,指明是否将文件元数据(权限等)写入。 下面是一个例子,往磁盘中写数据和元数据:
channel.force(true);