Java監控檔案變化

來源:互聯網
上載者:User

標籤:java   檔案系統   

NIO.2的Path類提供了如下的一個方法來監聽檔案系統的變化。

register(WatcherService watcher,WatchEvent.Kind<?>... events):用watcher監聽該path代表的目錄下檔案變化。event參數指定要監聽哪些類型的事件。

WatchService有三個方法來監聽目錄的檔案變化事件。

WatchKey poll():擷取下一個WatchKey,如果沒有WatchKey發生就立即返回null;

WatcheKey poll(long timeout,TimeUnit unit):嘗試等待timeout時間去擷取下一個WatchKey;

WatchKey  take():擷取下一個WatchKey,如果沒有發生就一直等待;

如果程式需要一直監控,則應該選擇使用take()方法,如果程式只需要監控指定時間,則使用poll方法。

  1. import java.nio.file.FileSystems;  
  2. import java.nio.file.Paths;  
  3. import java.nio.file.StandardWatchEventKinds;  
  4. import java.nio.file.WatchEvent;  
  5. import java.nio.file.WatchKey;  
  6. import java.nio.file.WatchService;  
  7. public class Test {  
  8.     public static void main(String[] args) throws Exception  
  9.     {  
  10.           
  11.         WatchService watchService=FileSystems.getDefault().newWatchService();  
  12.         Paths.get("C:/").register(watchService,   
  13.                 StandardWatchEventKinds.ENTRY_CREATE,  
  14.                 StandardWatchEventKinds.ENTRY_DELETE,  
  15.                 StandardWatchEventKinds.ENTRY_MODIFY);  
  16.         while(true)  
  17.         {  
  18.             WatchKey key=watchService.take();  
  19.             for(WatchEvent<?> event:key.pollEvents())  
  20.             {  
  21.                 System.out.println(event.context()+"發生了"+event.kind()+"事件");  
  22.             }  
  23.             if(!key.reset())  
  24.             {  
  25.                 break;  
  26.             }  
  27.         }  
  28.     }  
  29. }  

著作權聲明:本文為博主http://www.zuiniusn.com原創文章,未經博主允許不得轉載。

Java監控檔案變化

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.