博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
文件变化监视 java.nio.file.WatchService
阅读量:6579 次
发布时间:2019-06-24

本文共 803 字,大约阅读时间需要 2 分钟。

WatchKey java.nio.file.Path.
register(WatchService watcher, Kind<?>... events) throws IOException
为该文件注册watch service。
Registers the file located by this path with a watch service. 
WatchKey java.nio.file.WatchService.
take() throws InterruptedException
检索并移除下一个watch key。若没有可检索的则阻塞。
Retrieves and removes next watch key, waiting if none are yet present.
List<WatchEvent<?>> java.nio.file.WatchKey.
pollEvents()
检索并移除所有该watch key
Retrieves and removes all pending events for this watch key, returning a List of the events that were retrieved. 
Kind<?> java.nio.file.WatchEvent.
kind()
返回事件种类
Returns the event kind.
String java.nio.file.WatchEvent.Kind.
name()
返回事件种类的名字。
Returns the name of the event kind.
? java.nio.file.WatchEvent.
context()
返回事件发生的环境,简单讲就是不带路径的文件名。
Returns the context for the event. 

转载地址:http://wtbno.baihongyu.com/

你可能感兴趣的文章
机器学习新手使用入门
查看>>
详解Spring Boot集成MyBatis的开发流程
查看>>
C# Winform制作虚拟键盘,支持中文
查看>>
Data Visualization – Banking Case Study Example (Part 1-6)
查看>>
Linux下用信号量实现对共享内存的访问保护
查看>>
九度OJ 1177 查找 (模拟)
查看>>
★Kali信息收集~★6.Dmitry:汇总收集
查看>>
分享一下学习css,js心得
查看>>
机器学习
查看>>
android java 堆栈的实现
查看>>
MySQL-负载很高排查思路
查看>>
expdp全库备份rac数据库因错误终止
查看>>
VM虚拟机内ubuntu无法连接到网络
查看>>
CDN服务上线,DNSPOD布局云端生态圈
查看>>
使用azure send grid发送email
查看>>
在线cron生成器
查看>>
spring-boot实战【01】:Hello World项目搭建
查看>>
移动端H5的一些基本知识点总结
查看>>
python——内置函数和lambda匿名函数
查看>>
【Docker江湖】之docker部署与理解
查看>>