Java NIO詳解及執行個體和源碼下載(二)

來源:互聯網
上載者:User

標籤: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詳解及執行個體和源碼下載(二)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.