码迷,mamicode.com
首页 > 其他好文 > 详细

关闭 FileChannel 打开的文件

时间:2016-05-18 10:57:28      阅读:519      评论:0      收藏:0      [点我收藏+]

标签:filechannel 关闭流

if(file.length() > 0){

Method getCleanerMethod;

sun.misc.Cleaner cleaner = null;

try {

getCleanerMethod = byteBuffer.getClass().getMethod("cleaner",

new Class[0]);

getCleanerMethod.setAccessible(true);

cleaner = (sun.misc.Cleaner) getCleanerMethod

.invoke(byteBuffer, new Object[0]);

cleaner.clean();

} catch (Exception e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

}


关闭 FileChannel 打开的文件

标签:filechannel 关闭流

原文地址:http://11615681.blog.51cto.com/11605681/1774618

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!