Java nio WatchService:Watch Windows 驱动器列表



我想在连接 USB 驱动器时收到通知。所以java sais:"Drive H:created"。有没有办法使用监视服务来做到这一点?监视根目录不起作用。它只监视当前驱动器的根目录: Paths.get("/").register

你不能用WatchService来做到这一点。由于您只担心Windows,因此您可以简单地轮询FileSystem.getRootDirectories并检测更改。

try {
   List<Path> roots = asList(FileSystems.getDefault().getRootDirectories());
   for(;;) {
        Thread.sleep(500);
        List<Path> newRoots = asList(FileSystems.getDefualt().getRootDirectories());
        for(Path newRoot : newRoots){
            if(!roots.contains(newRoot)) {
                System.out.println("New drive detected: " + newRoot);
            }
        }
        roots = newRoots;
    }
} catch(InterruptedException e) {
    e.printStackTrace();
    Thread.currentThread().interrupt();
}

如果您希望这在其他操作系统上运行,则必须轮询FileSystem.getFileStores并找出一种方法来获取FileStore的根路径。

/e1

private <T> List<T> asList(Iterable<T> i) {
    if (i instanceof List) { return (List<T>) i; }
    List<T> l = new ArrayList<>();
    for (T t : i) {
        l.add(t);
    }
    return l;
}

相关内容

  • 没有找到相关文章

最新更新