在使用GStringImpl
. 如果我用 a 创建一个新文件(然后列出该路径中的文件)GStringImpl
,我会得到一个空数组,并且没有错误,但是如果我只是一个普通字符串,我会得到一个文件列表......虽然这在我认为某处会出现错误的一种方式。
例子:
def thisIsAListOfFiles = new File("/absolute/fs/mount/point").listFiles()
def gString = "${StaticClass.propertyStringThatIsAnAbsoluteFilePath}"
def notAListOfFiles = new File(gString).listFiles()
对这里发生的事情有任何想法吗?这是预期的行为吗?
更多信息:
- Groovy 版本:2.1.3
- Grails 版本:2.2.2(当然这是在 grails 应用程序中)
- Java 版本:OpenJDK 运行时环境(IcedTea 2.3.9)
我从一个包含一堆这样的属性的属性文件开始
com.mycompany.property = "/absolute/directory/path"
因为我不能轻易地注入grailsApplication
非 grails 类(/src/groovy
例如任何东西),所以我注入grailsApplication
引导程序,并使用 groovy config slurper 从类路径中读取属性文件,然后将其设置为 groovy 类 Config.groovy 中的静态字符串值。然后,那个 groovy 类具有我在应用程序中任何地方需要的所有属性的静态变量。
注意:这不是读取属性文件或任何类似内容的问题。我Config.filePathProperty
在发生之前记录了正确的new File(var).listFiles()
值,并且该值已正确设置。