何从java中使用FileChannel映射的内存中取消映射文件

何从java中使用FileChannel映射的内存中取消映射文件

本文介绍了如何从java中使用FileChannel映射的内存中取消映射文件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用 FileChannel.map()将文件(sample.txt)映射到内存,然后使用 fc关闭频道。关闭()。在此之后,当我使用FileOutputStream写入文件时,我收到以下错误:

I am mapping a file("sample.txt") to memory using FileChannel.map() and then closing the channel using fc.close(). After this when I write to the file using FileOutputStream, I am getting the following error:



File f = new File("sample.txt");
RandomAccessFile raf = new RandomAccessFile(f,"rw");
FileChannel fc = raf.getChannel();
MappedByteBuffer mbf = fc.map(FileChannel.MapMode.READ_ONLY, 0, fc.size());
fc.close();
raf.close();

FileOutputStream fos = new FileOutputStream(f);
fos.write(str.getBytes());
fos.close();

我认为这可能是由于文件仍然映射到内存,即使我关闭 FileChannel 。我对吗?。如果是这样,我如何从内存中取消映射文件?(我在API中找不到任何方法)。
谢谢。

I presume this may be due to file being still mapped to the memory even after I close the FileChannel. Am I right?. If so, how can I "unmap" the file from memory?(I can't find any methods for this in the API).Thanks.

编辑:
看起来它(添加一个unmap方法)作为RFE提交给sun一段时间了:

推荐答案

来自 MappedByteBuffer javadoc:

From the MappedByteBuffer javadoc:

尝试调用 System.gc()?即使这只是对VM的建议。

Try calling System.gc()? Even that's only a suggestion to the VM.

这篇关于如何从java中使用FileChannel映射的内存中取消映射文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-24 16:39