作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 Java 中存在 java.io.File.createTempFile 函数来创建临时文件。在 Groovy 中似乎不存在这样的功能,因为 File 类中缺少此功能。 (见:http://docs.groovy-lang.org/latest/html/groovy-jdk/java/io/File.html)
无论如何,是否有一种理智的方法可以在 Groovy 中创建临时文件或文件路径,或者我是否需要自己创建一个(如果我没记错的话,这不容易正确)?
先感谢您!
最佳答案
File.createTempFile("temp",".tmp").with {
// Include the line below if you want the file to be automatically deleted when the
// JVM exits
// deleteOnExit()
write "Hello world"
println absolutePath
}
File
,所以这是上面代码的一个更简单(但功能相同)的版本。
File file = File.createTempFile("temp",".tmp")
// Include the line below if you want the file to be automatically deleted when the
// JVM exits
// file.deleteOnExit()
file.write "Hello world"
println file.absolutePath
关于groovy - 如何在 Groovy 中创建临时文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4338037/
我是一名优秀的程序员,十分优秀!