【Linux文件系統監控的Java類庫 inotify-java】

inotify-java是一個在 Linux 下對文件系統的更改進行監控的 java庫。html

示例代碼:java


  1. try {
    面試

  2.             Inotify i = new Inotify();
    ide

  3.             InotifyEventListener e = new InotifyEventListener() {
    post


  4.                 @Override
    學習

  5.                 public void filesystemEventOccurred(InotifyEvent e) {
    spa

  6.                     System.out.println("inotify event occurred!");
    htm

  7.                 }
    ci


  8.                 @Override
    postmessage

  9.                 public void queueFull(EventQueueFull e) {

  10.                     System.out.println("inotify event queue: " + e.getSource() +

  11.                             " is full!");

  12.                 }

  13.                 

  14.             };

  15.             i.addInotifyEventListener(e);

  16.             i.addWatch(System.getProperty("user.home"), Constants.IN_ACCESS);

  17.         } catch (UnsatisfiedLinkError e) {

  18.             System.err.println("unsatisfied link error");

  19.         } catch (UserLimitException e) {

  20.             System.err.println("user limit exception");

  21.         } catch (SystemLimitException e) {

  22.             System.err.println("system limit exception");

  23.         } catch (InsufficientKernelMemoryException e) {

  24.             System.err.println("insufficient kernel memory exception");

  25.         }

更多java,java學習,java面試題  http://techfoxbbs.com

相關文章
相關標籤/搜索