標籤:java-nio nio流 java-io java nio
這裡寫連結內容 - WatchService
public class WatchServiceTest { public static void main(String[] args) { try { WatchService watchService = FileSystems.getDefault().newWatchService(); Paths.get("D:\\").register(watchService, StandardWatchEventKinds.ENTRY_CREATE, StandardWatchEventKinds.ENTRY_DELETE,StandardWatchEventKinds.ENTRY_MODIFY); while(true){ WatchKey key = watchService.take(); for (WatchEvent<?> event : key.pollEvents()) { System.out.println(event.context()+ "發生了"+event.kind()+"事件"); } boolean vaild = key.reset();//重設WatchKey if (!vaild) {//如果重設失敗,退出監聽 break; } } } catch (IOException | InterruptedException e) { e.printStackTrace(); } }}
結果:
作者使用的是D盤目錄進行監聽,這個監控檔案變化的監聽器可以做到對D盤和它的第一級子目錄的變化進行監聽,對它的子目錄內部的變化無法做到監聽。
WatchService有3個方法來擷取艦艇目錄的檔案變化事件。
poll():擷取下一個WatchKey,如果沒有WatchKey發生就立即返回null。
poll(long timeout, TimeUnit unit):嘗試等待timeout時間去擷取下一個WatchKey。
take() : 擷取下一個WatchKey,如果沒有WatchKey發生就移植等待。
如果程式需要一直監控,則選擇take()方法。如果程式需要監聽指定時間,使用poll()方法。
public class AttributeViewTest { public static void main(String[] args) { Path testPath = Paths.get(".\\src\\com\\yin\\nio\\AttributeViewTest.java"); BasicFileAttributeView basicView = Files.getFileAttributeView(testPath, BasicFileAttributeView.class); try { BasicFileAttributes basicFileAttributes = basicView.readAttributes(); PrintStr("建立時間:"+new Date(basicFileAttributes.creationTime().toMillis()).toLocaleString()); PrintStr("最後訪問時間:"+new Date(basicFileAttributes.lastAccessTime().toMillis()).toLocaleString()); PrintStr("最後修改時間:"+new Date(basicFileAttributes.lastModifiedTime().toMillis()).toLocaleString()); PrintStr("檔案大小:"+basicFileAttributes.size()); } catch (IOException e) { e.printStackTrace(); } } private static void PrintStr(String str){ System.out.println(str); }}
結果:
源碼下載
Java NIO詳解及執行個體和源碼下載(二)