我在保持 vfs2 的默认文件监视器线程活动时遇到问题。执行的主线程在启动监视器对象后正常终止。我想知道为什么这个对象不会"监控",而是直接走到最后。(以日志消息"正在退出..."结尾)
public static void main(String[] args) {
try {
Options options = new Options();
options.addOption("b", true, "path to the build file");
options.addOption("d", true, "directory to watch");
CommandLineParser parser = new PosixParser();
CommandLine cmd = parser.parse(options, args);
String dir = cmd.getOptionValue("d");
String buildFile = cmd.getOptionValue("b");
if(dir == null) {
logger.error("No directory specified," +
" use [-d 'name_of_dir'] to specify one");
return;
}
if(buildFile == null) {
logger.error("No build file path specified," +
" use [-b 'path_to_build_file'] to specify one");
return;
}
FileSystemManager fsManager = VFS.getManager();
FileObject listendir = fsManager.resolveFile(dir);
DefaultFileMonitor fm = new DefaultFileMonitor(new CustomFileListener(buildFile));
fm.setRecursive(true);
fm.addFile(listendir);
fm.start();
}catch(Exception e){
logger.error("Exception ", e);
}
logger.info("exitting....");
}
DefaultFileMonitor
的工作方式类似于守护程序线程,即即使监视线程正在运行,虚拟机也会终止。解决方法是使用具有无限循环的非守护程序线程或由您控制的另一种循环。