91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用java怎么實時監控文件的行尾內容

發布時間:2021-04-16 17:53:30 來源:億速云 閱讀:213 作者:Leah 欄目:編程語言

這篇文章給大家介紹使用java怎么實時監控文件的行尾內容,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

1.WatchService

首先介紹一下WatchService類,WatchService可以監控某一個目錄下的文件的變動(新增,修改,刪除)并以事件的形式通知文件的變更,這里我們可以實時的獲取到文件的修改事件,然后計算出追加的內容,Talk is cheap,Show me the code.

Listener

簡單的接口,只有一個fire方法,當事件發生時處理事件。

  public interface Listener {

  /**
   * 發生文件變動事件時的處理邏輯
   * 
   * @param event
   */
  void fire(FileChangeEvent event);
}

FileChangeListener

Listener接口的實現類,處理文件變更事件。

public class FileChangeListener implements Listener {

  /**
   * 保存路徑跟文件包裝類的映射
   */
  private final Map<String, FileWrapper> map = new ConcurrentHashMap<>();

  public void fire(FileChangeEvent event) {
    switch (event.getKind().name()) {
    case "ENTRY_MODIFY":
      // 文件修改事件
      modify(event.getPath());
      break;
    default:
      throw new UnsupportedOperationException(
          String.format("The kind [%s] is unsupport.", event.getKind().name()));
    }
  }

  private void modify(Path path) {
    // 根據全路徑獲取包裝類對象
    FileWrapper wrapper = map.get(path.toString());
    if (wrapper == null) {
      wrapper = new FileWrapper(path.toFile());
      map.put(path.toString(), wrapper);
    }
    try {
      // 讀取追加的內容
      new ContentReader(wrapper).read();
    } catch (IOException e) {
      e.printStackTrace();
    }
  }

}

FileWrapper

文件包裝類,包含文件和當前讀取的行號

public class FileWrapper {

  /**
   * 當前文件讀取的行數
   */
  private int currentLine;

  /**
   * 監聽的文件
   */
  private final File file;

  public FileWrapper(File file) {
    this(file, 0);
  }

  public FileWrapper(File file, int currentLine) {
    this.file = file;
    this.currentLine = currentLine;
  }

  public int getCurrentLine() {
    return currentLine;
  }

  public void setCurrentLine(int currentLine) {
    this.currentLine = currentLine;
  }

  public File getFile() {
    return file;
  }

}

FileChangeEvent

文件變更事件

public class FileChangeEvent {

  /**
   * 文件全路徑
   */
  private final Path path;
  /**
   * 事件類型
   */
  private final WatchEvent.Kind<?> kind;

  public FileChangeEvent(Path path, Kind<?> kind) {
    this.path = path;
    this.kind = kind;
  }

  public Path getPath() {
    return this.path;
  }

  public WatchEvent.Kind<?> getKind() {
    return this.kind;
  }

}

ContentReader

內容讀取類

public class ContentReader {

  private final FileWrapper wrapper;

  public ContentReader(FileWrapper wrapper) {
    this.wrapper = wrapper;
  }

  public void read() throws FileNotFoundException, IOException {
    try (LineNumberReader lineReader = new LineNumberReader(new FileReader(wrapper.getFile()))) {
      List<String> contents = lineReader.lines().collect(Collectors.toList());
      if (contents.size() > wrapper.getCurrentLine()) {
        for (int i = wrapper.getCurrentLine(); i < contents.size(); i++) {
          // 這里只是簡單打印出新加的內容到控制臺
          System.out.println(contents.get(i));
        }
      }
      // 保存當前讀取到的行數
      wrapper.setCurrentLine(contents.size());
    }
  }

}

DirectoryTargetMonitor

目錄監視器,監控目錄下文件的變化

public class DirectoryTargetMonitor {

  private WatchService watchService;

  private final FileChangeListener listener;

  private final Path path;

  private volatile boolean start = false;

  public DirectoryTargetMonitor(final FileChangeListener listener, final String targetPath) {
    this(listener, targetPath, "");
  }

  public DirectoryTargetMonitor(final FileChangeListener listener, final String targetPath, final String... morePaths) {
    this.listener = listener;
    this.path = Paths.get(targetPath, morePaths);
  }

  public void startMonitor() throws IOException {
    this.watchService = FileSystems.getDefault().newWatchService();
    // 注冊變更事件到WatchService
    this.path.register(watchService, StandardWatchEventKinds.ENTRY_MODIFY);
    this.start = true;
    while (start) {
      WatchKey watchKey = null;
      try {
        // 阻塞直到有事件發生
        watchKey = watchService.take();
        watchKey.pollEvents().forEach(event -> {
          WatchEvent.Kind<?> kind = event.kind();
          Path path = (Path) event.context();
          Path child = this.path.resolve(path);
          listener.fire(new FileChangeEvent(child, kind));
        });
      } catch (Exception e) {
        this.start = false;
      } finally {
        if (watchKey != null) {
          watchKey.reset();
        }
      }
    }
  }

  public void stopMonitor() throws IOException {
    System.out.printf("The directory [%s] monitor will be stop ...\n", path);
    Thread.currentThread().interrupt();
    this.start = false;
    this.watchService.close();
    System.out.printf("The directory [%s] monitor will be stop done.\n", path);
  }

}

測試類

在D盤新建一個monitor文件夾, 新建一個test.txt文件,然后啟動程序,程序啟動完成后,我們嘗試往test.txt添加內容然后保存,控制臺會實時的輸出我們追加的內容,PS:追加的內容要以新起一行的形式追加,如果只是在原來的尾行追加,本程序不會輸出到控制臺,有興趣的同學可以擴展一下

  public static void main(String[] args) throws IOException {
    DirectoryTargetMonitor monitor = new DirectoryTargetMonitor(new FileChangeListener(), "D:\\monitor");
    monitor.startMonitor();
  }

關于使用java怎么實時監控文件的行尾內容就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

保定市| 韩城市| 阿图什市| 隆昌县| 棋牌| 论坛| 泾源县| 两当县| 尼玛县| 罗江县| 台山市| 龙井市| 电白县| 山东| 广安市| 荥阳市| 德惠市| 盘锦市| 上蔡县| 青河县| 体育| 宁德市| 祥云县| 高尔夫| 葫芦岛市| 沭阳县| 苏尼特左旗| 潜山县| 绥滨县| 明水县| 神池县| 长海县| 延吉市| 板桥市| 西安市| 醴陵市| 奈曼旗| 淮北市| 凤翔县| 自贡市| 阳信县|