我已经和Groovy和Grails合作了几个星期,没有任何问题。
我刚遇到任何文件创建命令的问题,例如
def file = new File("test.txt")
在运行时使用
失败Class groovy.lang.GroovyRuntimeException
Message:Could not find matching constructor for: bcp.File(java.lang.String)
任何帮助表示感谢。
答案 0 :(得分:0)
尝试
def file = new java.io.File("test.txt")