首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Java相关 >

用java怎么判断一个文件是否关闭

2013-06-19 
用java如何判断一个文件是否关闭用哪个方法可以判断,难道只有用renameto方法吗[解决办法]nio有个FileChann

用java如何判断一个文件是否关闭
用哪个方法可以判断,难道只有用renameto方法吗
[解决办法]
nio有个FileChannel类。
我搜了个例子,自己看看

public class TestFileLock {
  public static void main(String[] args) throws Exception{
    Runnable r = new Runnable(){
      public void run()
      {
        try{
          RandomAccessFile raf = new RandomAccessFile ("c:\\test.txt","rw");
          FileChannel fc = raf.getChannel();
          FileLock lock = fc.tryLock();
          if(lock!=null)
          {
              System.out.println(Thread.currentThread().getName()+": Open the File");
              Thread.sleep(100000);
              lock.release();
              System.out.println(Thread.currentThread().getName()+": Releae the File.");
          }
          else
            System.out.println(Thread.currentThread().getName()+": Because the file is being used, you can't get the file lock.");      
        }catch(Exception e)
        {
          
        }

      }
    };
new Thread(r).start();
   new Thread(r).start();
  }
}

热点排行