我有一些JNotify的jython代码,如下所示:
mask = JNotify.FILE_CREATED | JNotify.FILE_DELETED | \
JNotify.FILE_MODIFIED | JNotify.FILE_RENAMED
class Listener(JNotifyListener):
def fileRenamed(self, wd, rootPath, oldName, newName):
pass
def fileModified(self, wd, root, name):
add_file(root, name)
def fileDeleted(self, wd, root, name):
add_file(root, name)
def fileCreated(self, wd, root, name):
add_file(root, name)
st = time.time()
JNotify.addWatch("some_path", mask, True, Listener())
print time.time - st
完成代码需要大约98.4秒。
但是当我运行time java -jar jnotify-0.94.jar
命令时,速度非常快,花费不到1秒。
Jython和JNotify出了什么问题?
答案 0 :(得分:0)
时间与文件数有关。不是Jython或JNotify的问题。 !-_-