繁体   English   中英

尝试调用未绑定的fn:#'datoteka.core / to-file

[英]Attempting to call unbound fn: #'datoteka.core/to-file

我对Clojure非常陌生,但出现以下错误:

Caused by: java.lang.IllegalStateException: Attempting to call unbound fn: #'datoteka.core/to-file
at clojure.lang.Var$Unbound.throwArity(Var.java:45)
at clojure.lang.AFn.invoke(AFn.java:32)
at package.auth_monitor$start_monitor_thread.invokeStatic(auth_monitor.clj:43)
at package.auth_monitor$start_monitor_thread.invoke(auth_monitor.clj:38)
at package.auth_monitor$start_monitor.invokeStatic(auth_monitor.clj:62)
at package.auth_monitor$start_monitor.invoke(auth_monitor.clj:49)
at package.auth_monitor$fn__11768.invokeStatic(auth_monitor.clj:71)
at package.auth_monitor$fn__11768.invoke(auth_monitor.clj:70)

代码是:

42. (let [^TailerListener listener (make-listener)
43.    ^File file (fs/to-file path)
44.    ^Tailer tailer (Tailer. file listener 1000 true)]
45. (doto (Thread. tailer)
46.  (.setDaemon false)
47.  (.start)))

我想您正在使用Datoteka库。 尝试使用file函数获取基于路径的File对象( to-file似乎是错误的名称):

(let [^TailerListener listener (make-listener)
      ^File file (fs/file path)
      ^Tailer tailer (Tailer. file listener 1000 true)]
  (doto (Thread. tailer)
    (.setDaemon false)
    (.start)))

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM